		// Highlighter Scroller II script- By JavaScript Kit (http://www.javascriptkit.com)
		// For this and over 400+ free scripts, visit http://www.javascriptkit.com/
		// This notice must stay intact

		//CONFIGURE MESSAGES AND VARIABLES
		var tickercontents=new Array()
		//tickercontents[0]='&nbsp;&nbsp;Mumbai Zonal Round Winners announced <a href="http://www.etcitigrandmasters.com/index.php/blog/index/"><img src="http://www.etcitigrandmasters.com/themes/profile_themes/default/images/etciti/home-annouce-more.gif" style="margin:0 0 -3px 0;"></a>'
		tickercontents[0]='&nbsp;&nbsp;&nbsp;&nbsp;Kolkatta Zonal Round to be held on <span style="color:#ad050b;">5th Jan, 09</span>'

		var tickerwidth="300px"
		var tickerheight="40px"
		var fontcss="font: bold 12px Arial; color:black"
		var tickdelay=3000 //delay btw messages
		var highlightspeed=6 //2 pixels at a time.
		var highlightcolor="transparent"
		var backdroptextcolor="#000"

		////Do not edit pass this line////////////////

		document.write('<style>#highlighterbg a{color:'+backdroptextcolor+'}</style>')
		document.write('<div style="position:absolute; left:460px; top:70px;font-size:11px; color:#fff; font-weight:bold;background:url(http://www.etcitigrandmasters.com/themes/profile_themes/default/images/etciti/home-annouce-bg.jpg) no-repeat; width:302px; height:42px;">')
		document.write('<span id="highlighterbg" style="position:absolute;left:0;top:11px;color:'+backdroptextcolor+'; width:'+tickerwidth+'; height:'+tickerheight+';padding: 4px"></span><span id="highlighter" style="position:absolute;left:0;top:11px;clip:rect(auto auto auto 0px); background-color:'+highlightcolor+'; width:'+tickerwidth+';height:'+tickerheight+';padding: 4px"></span>')
		document.write('</div>')

		var currentmessage=0
		var clipbottom=1

		function changetickercontent(){
		msgheight=clipbottom=crosstick.offsetHeight
		crosstick.style.clip="rect("+msgheight+"px auto auto 0px)"
		crosstickbg.innerHTML=tickercontents[currentmessage]
		crosstick.innerHTML=tickercontents[currentmessage]
		highlightmsg()
		}

		function highlightmsg(){
		//var msgheight=crosstick.offsetHeight
		if (clipbottom>0){
		clipbottom-=highlightspeed
		crosstick.style.clip="rect("+clipbottom+"px auto auto 0px)"
		beginclip=setTimeout("highlightmsg()",20)
		}
		else{
		clipbottom=msgheight
		clearTimeout(beginclip)
		if (currentmessage==tickercontents.length-1) currentmessage=0
		else currentmessage++
		setTimeout("changetickercontent()",tickdelay)
		}
		}

		function start_ticking(){
		crosstickbg=document.getElementById? document.getElementById("highlighterbg") : document.all.highlighterbg
		crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter
		crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement
		if (parseInt(crosstick.offsetHeight)>0)
		crosstickParent.style.height=crosstick.offsetHeight+'px'
		else
		setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100) //delay for Mozilla's sake
		changetickercontent()
		}

		if (document.all || document.getElementById)
		window.onload=start_ticking


