

//Slide-in scoller- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, 100's more DHTML scripts, and TOS,
//visit http://www.dynamicdrive.com

//Configure delay between messages (4000=4 secs):
var delay=4000
//Configure scroller width
var scrollwidth="500px"
//Configure scroller height
var scrollheight="50px"
var message=new Array()
//Configure messages. Extend array as needed:
var openingtag='<font face="Arial" size=3 color="#993333">'
//message[0]='<b>Message 1 here</b>'
//message[1]='<b>Message 2 here</b>'
//message[2]='<b>Message 3 here</b>'
var closingtag='</font>'

//This variable specifies the initial negative offset of each msg
//You may wish to increase it if your scroller is to the right of page horizontally
var hoffset=-10
message[0]=''
var inc=1
var ns4=document.layers
var ie5ns6=document.getElementById||document.all

if (ie5ns6)
document.write(openingtag+'<div id="flyin" style="position:relative;width:'+scrollwidth+';height:'+scrollheight+';">'+message[0]+'</div>'+closingtag)

function initialize(msg1,msg2,msg3){
message[0]=msg1
message[1]=msg2
message[2]=msg3
setInterval("updatemsg()",delay+1000)
}
function updatemsg(){
crossobj=document.getElementById? document.getElementById("flyin") : document.all.flyin
crossobj.style.left="-2000px"
crossobj.style.fontStyle="italic"
crossobj.innerHTML=message[inc]
crossobj.style.left=crossobj.offsetWidth*(-1)+hoffset+"px"
start=setInterval("animatein()",50)
inc=(inc<message.length-1)? inc+1 : 0
}

function animatein(){
if (parseInt(crossobj.style.left)<0)
crossobj.style.left=parseInt(crossobj.style.left)+20+"px"
else{
crossobj.style.left=0+"px"
crossobj.style.fontStyle="normal"
clearInterval(start)
}
}


