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