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

0' tickercontent[2]='Total Imaging Pros
950' tickercontent[3]='New Imaging Pros
this Month

1' tickercontent[4]='Total Angio-Inter Jobs
0' tickercontent[5]='New Angio-Inter Jobs
this Month

0' tickercontent[6]='Total Bone Densi Jobs
0' tickercontent[7]='New Bone Densi Jobs
this Month

0' tickercontent[8]='Total Cardiac Cath Jobs
0' tickercontent[9]='New Cardiac Cath Jobs
this Month

0' tickercontent[10]='Total Cardio Jobs
0' tickercontent[11]='New Cardio Jobs
this Month

0' tickercontent[12]='Total CT Jobs
0' tickercontent[13]='New CT Jobs
this Month

0' tickercontent[14]='Total Dosi Jobs
0' tickercontent[15]='New Dosi Jobs
this Month

0' tickercontent[16]='Total Echo Jobs
0' tickercontent[17]='New Echo Jobs
this Month

0' tickercontent[18]='Total Mammo Jobs
0' tickercontent[19]='New Mammo Jobs
this Month

0' tickercontent[20]='Total MRI Jobs
0' tickercontent[21]='New MRI Jobs
this Month

0' tickercontent[22]='Total Nuc Med Jobs
0' tickercontent[23]='New Nuc Med Jobs
this Month

0' tickercontent[24]='Total Rad Therapy Jobs
0' tickercontent[25]='New Rad Therapy Jobs
this Month

0' tickercontent[26]='Total Radio Jobs
0' tickercontent[27]='New Radio Jobs
this Month

0' tickercontent[28]='Total Ultra Jobs
0' tickercontent[29]='New Ultra Jobs
this Month

0' tickercontent[30]='Total X-ray Jobs
0' tickercontent[31]='New X-ray Jobs
this Month

0' tickercontent[32]='Total Angio-Inter Pros
2' tickercontent[33]='New Angio-Inter Pros
this Month

0' tickercontent[34]='Total Bone Densi Pros
1' tickercontent[35]='New Bone Densi Pros
this Month

0' tickercontent[36]='Total Cardiac Cath Pros
6' tickercontent[37]='New Cardiac Cath Pros
this Month

0' tickercontent[38]='Total Cardio Pros
10' tickercontent[39]='New Cardio Pros
this Month

0' tickercontent[40]='Total CT Pros
10' tickercontent[41]='New CT Pros
this Month

0' tickercontent[42]='Total Dosi Pros
8' tickercontent[43]='New Dosi Pros
this Month

0' tickercontent[44]='Total Echo Pros
47' tickercontent[45]='New Echo Pros
this Month

0' tickercontent[46]='Total Mammo Pros
5' tickercontent[47]='New Mammo Pros
this Month

0' tickercontent[48]='Total MRI Pros
47' tickercontent[49]='New MRI Pros
this Month

0' tickercontent[50]='Total Nuc Med Pros
365' tickercontent[51]='New Nuc Med Pros
this Month

0' tickercontent[52]='Total Rad Therapy Pros
57' tickercontent[53]='New Rad Therapy Pros
this Month

0' tickercontent[54]='Total Radio Pros
17' tickercontent[55]='New Radio Pros
this Month

1' tickercontent[56]='Total Ultra Pros
354' tickercontent[57]='New Ultra Pros
this Month

0' tickercontent[58]='Total X-ray Pros
21' tickercontent[59]='New X-ray Pros
this Month

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