var RotateItems=0;var RotateCurrent=0;var Delay=2500;$(function(){$(".RotateHighlight:first").addClass("Highlight");RotateHighlight()});function RotateHighlight(){if(RotateItems==0){RotateItems=$(".RotateHighlight").length}$(".RotateHighlight.Highlight").removeClass("Highlight");$(".RotateHighlight:eq("+RotateCurrent+")").addClass("Highlight");RotateCurrent++;if(RotateCurrent>=RotateItems){RotateCurrent=0}setTimeout("RotateHighlight();",Delay)};
