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

252' tickercontent[2]='Total Therapists
7027' tickercontent[3]='New Therapists
this Month

63' tickercontent[4]='Total PT Jobs
3094' tickercontent[5]='New PT Jobs
this Month

66' tickercontent[6]='Total PTA Jobs
1155' tickercontent[7]='New PTA Jobs
this Month

29' tickercontent[8]='Total OT Jobs
2951' tickercontent[9]='New OT Jobs
this Month

75' tickercontent[10]='Total COTA Jobs
1230' tickercontent[11]='New COTA Jobs
this Month

43' tickercontent[12]='Total SLP Jobs
1202' tickercontent[13]='New SLP Jobs
this Month

39' tickercontent[14]='Total PTs
1331' tickercontent[15]='New PTs
this Month

6' tickercontent[16]='Total PTAs
2215' tickercontent[17]='New PTAs
this Month

30' tickercontent[18]='Total OTs
998' tickercontent[19]='New OTs
this Month

4' tickercontent[20]='Total COTAs
1378' tickercontent[21]='New COTAs
this Month

19' tickercontent[22]='Total SLPs
980' tickercontent[23]='New SLPs
this Month

3' /*********************************************** * 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]) }