function isIE(){  return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);}
	
	// Distributed by http://www.hypergurl.com
	
	// DIV containing the scroller
	var theElement2="scroll_box_inner_2"
	
	// Scrollers width here (in pixels)
	var scrollerwidth2="450px"
	
	// Scrollers height here
	var scrollerheight2="36px"
	
	// Scrollers speed here (larger is faster 1-10)
	var theSpeed2=8
	
	// Pause on mouse-over?
	var pauseit2=1
	
	//time to pause on content (milliseconds)
	var pauseTime2=4000
	
	// Change nothing below! -----------------------------------------------------
	if (theSpeed2<1 || theSpeed2>10) {theSpeed2=5}
	theSpeed2=220-(theSpeed2*20)
	var scrollerspeed2=1
	var copyspeed2=scrollerspeed2
	var actualheight2=''
	var cross_scroller2, ns_scroller2, mainPosition2, timerVar2
	var pausespeed2=(pauseit2==0)? copyspeed2: 0

	function populate2()
	{
		if (document.getElementById(theElement2))
		{
			cross_scroller2=document.getElementById? document.getElementById(theElement2) : document.all.theElement2
			
			//-32 below for instant show
			cross_scroller2.style.top=parseInt(scrollerheight2)+0+"px"			
			
			actualheight2=cross_scroller2.offsetHeight
			
			//initialize intervals
			if (isIE)
				{lefttime2=setInterval("scrollscroller2()",theSpeed2-10)}
			else
				{lefttime2=setInterval("scrollscroller2()",theSpeed2)}
		}
	}

	//window.onload=populate
		
	function scrollscroller2()
	{		
		//increase position (scroll)
		if (parseInt(cross_scroller2.style.top)>(actualheight2*(-1)+5))
			{cross_scroller2.style.top=parseInt(cross_scroller2.style.top)-copyspeed2+"px"}
		else
			{cross_scroller2.style.top=parseInt(scrollerheight2)+0+"px"}		
	
		//if content is centered, then reinitialize inteval for 1.5 second
		mainPosition2 = cross_scroller2.style.top
		if ((Math.abs(mainPosition2.replace('px','')-5) % 41) == 0)
		{
			clearInterval(lefttime2)
			lefttime2=setInterval("scrollscroller2()",pauseTime2)
		}
		else
		{
			//content is no longer centered, continue regular speed
			clearInterval(lefttime2)
			if (isIE)
				{lefttime2=setInterval("scrollscroller2()",theSpeed2-10)}
			else
				{lefttime2=setInterval("scrollscroller2()",theSpeed2)}
		}
	}	
