
var stopcontent=new Array()
stopcontent[0]='"<i>My wife Kelly and I had visited Dr. Richard\'s Gum care Dental Clinic for dental treatment. Dr. performed extraction for me and my wife and some other dental treatments. The entire treatment was painless and the whole experience at Gum Care was wonderful. I strongly recommended Dr. Richard\'s Clinic to one and all who need his services.</i>"<font color=#555555><br /><br />Elia Bresci.<br />Alitalia Station Manager<br />CSI Mumbai.</font>'

stopcontent[1]=' "<i>Gum Care Dental Clinic is one of the most modern clinics I have ever seen. The ease with which he cleaned my teeth was amazing.  I have never found myself so comfortable in a dentist\'s clinic ever before. What touched me the most was his punctuality, personal care and concern. I wish him and his team all the best and great success in life. With warm regards.</i>"<font color=#555555> <br /><br />Mayur Nayak. <br />Mumbai <br />dated 20th November, 2007.</font>'

stopcontent[2]='<i>Dear Dr. Pereira, <br />"I had 6 teeth crowned by you on the upper jaw and must say that you have done a wonderful job in repairing my teeth and I would like to say that I am very satisfied with your personal care and professional work. My wife also would like to come back again to Mumbai and get her treatment done at your clinic. In November 2007 I would like to come and get the lower jaw teeth done in similar way.</i>"<br /><br /><font color=#555555>M.J. Mawji<br />  P.A.D.I. Diving Instructor/MD.</font>'






function aomscroller(content, divId, divClass, delay){
this.content=content 
this.tickerid=divId 
this.delay=delay 
this.mouseoverBol=0 
this.hiddendivpointer=1 
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) 
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) 
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) 
setTimeout(function(){scrollerinstance.initialize()}, 500)
}



aomscroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(aomscroller.getCSSpadding(this.tickerdiv))

this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up bugs in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}



aomscroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 2) // it determined speed of animation
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}


aomscroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

aomscroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}


aomscroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) 
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

aomscroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle)
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
