var pausecontent=new Array()

//pausecontent[0]='<span class="highlights"></span> <span class="scrollertext"> <b>Call center number has been changed to <font color="blue" size="3">09057570045</font></b></span><br/>'
//pausecontent[0]='<span class="highlights"></span> <span class="scrollertext">Please note that due to unforeseen circumstances, the <b>India Visa Application center,Glasgow </b>will remain closed today, Friday, the 06th of Nov 09. The center will re-open on Monday, the 09th of Nov 09, Inconvenience is regretted. Kindly submit your application at India Visa Application Center, Edinburgh in case of an urgency.</span><br/>'
pausecontent[0]='<span class="highlights">Centralised Postal Processing Center.</span><br><span class="scrollertext">All postal applications are now processed at our centralised Postal Unit at Hayes. For details, please click on the following <a href="postal-app.aspx">link</a>. Also, note VFS partners with DX secure courier for postal services bought from us. Kindly track your postal dispatch on DX website <a href="http://www.thedx.co.uk">www.thedx.co.uk.</a></span><br/>'

pausecontent[1]='<span class="highlights"></span> <span class="scrollertext"><b>Processing time for UK Nationals is a minimum of 2-3 working days</b> from the date of submission at any of our visa application centres. (The same can vary from case to case.)</span><br/>'

pausecontent[2]='<span class="highlights"></span> <span class="scrollertext">In view of this legal provision all foreign nationals of Indian origin applying for Indian visa, OCI/PIO card or other consular services are required to surrender their Indian passports (valid/Expired) to the High Commission of India, London and at Consulates General of India at Birmingham & Edinburgh respectively. They would be issued surrender certificate in lieu of depositing their Indian passports. For further details, please visit <b>"IMPORTANT NOTICES"</b>.</span><br/>'

pausecontent[3]='<span class="highlights"></span> <span class="scrollertext">In view of the spread of the Swine Influenza A(H1N1) all passengers travelling to India will be screened at the International Airports in India on their arrival and required to carry the declaration form (Health Card) at the Immigration. Please visit Important Notices for details and health screening card.</span><br/>'

pausecontent[4]='<span class="highlights"></span> <span class="scrollertext"><b>Please note that there should be a gap of at least 2 months between two visits to India on a Tourist Visa. For more details, please visit Important Notices on our website.</b></span><br/>'

pausecontent[5]='<span class="highlights"></span> <span class="scrollertext"><b>Please note the new Tourist Visa Advisory issued by the Government of India for 2 Month travel restriction to India in our Important Notices section of the website OR <A href="http://in.vfsglobal.co.uk/notices.aspx">CLICK HERE</A>:</b></span><br/>'

//pausecontent[3]='<span class="highlights"></span> <span class="scrollertext"><b>Planned Industrial action by Royal Mail in London from Wednesday 8th- Friday 10th July. For details, please click on the following link:<br> <a href="http://www.royalmail.com/portal/rm/content1?catId=99700760&mediaId=99700760&campaignid=serviceupdate_redirect">http://www.royalmail.com/portal/rm/content1?catId=99700760&mediaId=99700760&campaignid=serviceupdate_redirect </a> </b></span><br/>'



function pausescroller(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)
}
pausescroller.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(pausescroller.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) 
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}

pausescroller.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()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

pausescroller.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()
}
}

pausescroller.getCSSpadding=function(tickerobj){ 
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) 
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}