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