var boxHeight = $('latest-news').style.height.replace('px','')
var repeatHeight = $('latest-news').scrollHeight //get the current height so we know when to wrap
$('latest-news').innerHTML = $('latest-news').innerHTML + $('latest-news').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
	}
	$('latest-news').scrollTop=$('latest-news').scrollTop+1
	if($('latest-news').scrollTop<=repeatHeight) {
		// keep on scrolin' 
		x = setTimeout("scrollMe()",40)
	}
	else { //we have hit the wrap point
		$('latest-news').scrollTop=0
		x = setTimeout("scrollMe()",40)
	}
}
x = setTimeout("scrollMe()",1000)
// start scrolling after one second
