var repeatHeight = $('meuscroll').scrollHeight //get the current height so we know when to wrap
$('meuscroll').style.height = '253px';
var boxHeight = $('meuscroll').style.height.replace('px','')
if(repeatHeight > boxHeight)
{
	$('meuscroll').innerHTML = $('meuscroll').innerHTML + $('meuscroll').innerHTML  //add a second copy so we can scroll down to the wrap point
	var stopScroll = 0
	var x
	function scrollMe() {
		clearTimeout(x)
		if(stopScroll==1) {
			return
		}
		$('meuscroll').scrollTop=$('meuscroll').scrollTop+1
		if($('meuscroll').scrollTop<=repeatHeight) {
			// keep on scrolin' 
			x = setTimeout("scrollMe()",40)
		}
		else { //we have hit the wrap point
			$('meuscroll').scrollTop=0
			x = setTimeout("scrollMe()",40)
		}
	}
	x = setTimeout("scrollMe()",1000)
}
// start scrolling after one second

