function isIE(){  return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);}
	
	// Distributed by http://www.hypergurl.com
	
	// DIV containing the scroller
	var theElement="scroll_box_inner"
	
	// Scrollers width here (in pixels)
	var scrollerwidth="230px"
	
	// Scrollers height here
	var scrollerheight="227px"
	
	// Scrollers speed here (larger is faster 1-10)
	var theSpeed=7
	
	// Pause on mouse-over?
	var pauseit=0
	
	// Change nothing below! -----------------------------------------------------
	if (theSpeed<1 || theSpeed>10) {theSpeed=5}
	theSpeed=220-(theSpeed*20)
	var scrollerspeed=1
	var copyspeed=scrollerspeed
	var actualheight=''
	var cross_scroller, ns_scroller
	var pausespeed=(pauseit==0)? copyspeed: 0

	function populate()
	{
		if (document.getElementById(theElement))
		{
			cross_scroller=document.getElementById? document.getElementById(theElement) : document.all.theElement
			cross_scroller.style.bottom=parseInt(scrollerheight)-210+"px"
			actualheight=cross_scroller.offsetHeight

			if (isIE)
				{lefttime=setInterval("scrollscroller()",theSpeed-10)}
			else
				{lefttime=setInterval("scrollscroller()",theSpeed)}
		}
	}

	//window.onload=populate
		
	function scrollscroller()
	{		
		if (parseInt(cross_scroller.style.bottom)>(actualheight*(-1)+5))
			{cross_scroller.style.bottom=parseInt(cross_scroller.style.bottom)-copyspeed+"px"}
		else
			{cross_scroller.style.bottom=parseInt(scrollerheight)+0+"px"}	
	}	