
// Scrollers width here (in pixels)
var scrollerwidth1="170px"

// Scrollers height here
var scrollerheight1="73px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed1=1

//Scrollers left width
var scrollerLeft1="301px"


// Scrollers content goes here! Keep all of the message on the same line!

var scrollercontent1=document.getElementById('businessNews').innerHTML;
var pauseit1=1


// Change nothing below!

scrollerspeed1=(document.all)? scrollerspeed1 : Math.max(1, scrollerspeed1-1) //slow speed down by 1 for NS
var copyspeed1=scrollerspeed1
var iedom1=document.all||document.getElementById
var actualheight1=''
var cross_scroller1, ns_scroller1
var pausespeed=(pauseit1==0)? copyspeed1: 0

function populate1(){
if (iedom1){
cross_scroller1=document.getElementById? document.getElementById("iescroller1") : document.all.iescroller1
cross_scroller1.style.top=parseInt(scrollerheight1)+8+"px"
cross_scroller1.innerHTML=scrollercontent1
actualheight1=cross_scroller1.offsetHeight
}
else if (document.layers){
ns_scroller1=document.ns_scroller1.document.ns_scroller3
ns_scroller1.top=parseInt(scrollerheight1)+8
ns_scroller1.document.write(scrollercontent1)
ns_scroller1.document.close()
actualheight1=ns_scroller1.document.height
}
lefttime=setInterval("scrollscroller1()",50)
}
window.onload=populate1

function scrollscroller1(){

if (iedom1){
if (parseInt(cross_scroller1.style.top)>(actualheight1*(-1)+8))
cross_scroller1.style.top=parseInt(cross_scroller1.style.top)-copyspeed1+"px"
else
cross_scroller1.style.top=parseInt(scrollerheight1)+8+"px"
}
else if (document.layers){
if (ns_scroller1.top>(actualheight1*(-1)+8))
ns_scroller1.top-=copyspeed1
else
ns_scroller1.top=parseInt(scrollerheight1)+8
}
}

if (iedom1||document.layers){
with (document){
if (iedom1){
write('<div style="width:'+scrollerwidth1+';height:'+scrollerheight1+';overflow:hidden" onMouseover="copyspeed1=pausespeed" onMouseout="copyspeed1=scrollerspeed1">')
write('<div id="iescroller1" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth1+' height='+scrollerheight1+' name="ns_scroller1">')
write('<layer name="ns_scroller3" width='+scrollerwidth1+' height='+scrollerheight1+' left=0 top=0 onMouseover="copyspeed1=pausespeed" onMouseout="copyspeed1=scrollerspeed1"></layer>')
write('</ilayer>')
}
}
}