/*Example message arrays for the two demo scrollers*/ var tickercontent=new Array() tickercontent[0]='Total Therapy Jobs
7138' tickercontent[1]='New Therapy Jobs
this Month

7138' tickercontent[2]='Total Therapists
7840' tickercontent[3]='New Therapists
this Month

125' tickercontent[4]='Total PT Jobs
4464' tickercontent[5]='New PT Jobs
this Month

4464' tickercontent[6]='Total PTA Jobs
532' tickercontent[7]='New PTA Jobs
this Month

532' tickercontent[8]='Total OT Jobs
664' tickercontent[9]='New OT Jobs
this Month

664' tickercontent[10]='Total COTA Jobs
533' tickercontent[11]='New COTA Jobs
this Month

533' tickercontent[12]='Total SLP Jobs
945' tickercontent[13]='New SLP Jobs
this Month

945' tickercontent[14]='Total PTs
1492' tickercontent[15]='New PTs
this Month

23' tickercontent[16]='Total PTAs
2460' tickercontent[17]='New PTAs
this Month

34' tickercontent[18]='Total OTs
1148' tickercontent[19]='New OTs
this Month

13' tickercontent[20]='Total COTAs
1515' tickercontent[21]='New COTAs
this Month

25' tickercontent[22]='Total SLPs
1081' tickercontent[23]='New SLPs
this Month

27' /*********************************************** * DHTML Ticker script- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function domticker(content, divId, divClass, delay, fadeornot){ this.content=content this.tickerid=divId //ID of master ticker div. Message is contained inside first child of ticker div this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over ticker (and pause it if it is) this.pointer=1 this.opacitystring=(typeof fadeornot!="undefined")? "width: 100%; filter:progid:DXImageTransform.Microsoft.alpha(opacity=100); -moz-opacity: 1" : "" if (this.opacitystring!="") this.delay+=500 //add 1/2 sec to account for fade effect, if enabled this.opacitysetting=0.2 //Opacity value when reset. Internal use. document.write('
'+content[0]+'
') var instanceOfTicker=this setTimeout(function(){instanceOfTicker.initialize()}, delay) } domticker.prototype.initialize=function(){ var instanceOfTicker=this this.contentdiv=document.getElementById(this.tickerid).firstChild //div of inner content that holds the messages document.getElementById(this.tickerid).onmouseover=function(){instanceOfTicker.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){instanceOfTicker.mouseoverBol=0} this.rotatemsg() } domticker.prototype.rotatemsg=function(){ var instanceOfTicker=this if (this.mouseoverBol==1) //if mouse is currently over ticker, do nothing (pause it) setTimeout(function(){instanceOfTicker.rotatemsg()}, 100) else{ this.fadetransition("reset") //FADE EFFECT- RESET OPACITY this.contentdiv.innerHTML=this.content[this.pointer] this.fadetimer1=setInterval(function(){instanceOfTicker.fadetransition('up', 'fadetimer1')}, 100) //FADE EFFECT- PLAY IT this.pointer=(this.pointer=1) clearInterval(this[timerid]) }