var stopScroll = 0
var x;
var repeatHeight;
	
function scrollMe() {
	
	clearTimeout(x)
	if(stopScroll==1) {
		return;
	}

	$('highlights').scrollTop=$('highlights').scrollTop+1;

	if($('highlights').scrollTop<=repeatHeight) 
   {

		// keep on scrolin' 
		x = setTimeout("scrollMe()",50);
	}
	else { //we have hit the wrap point
		$('highlights').scrollTop=0;
		x = setTimeout("scrollMe()",50);
	}
}

