

			/*
			Highligher Scroller script- By JavaScript Kit
			For this and over 400+ free scripts, visit http://www.javascriptkit.com/
			This notice must stay intact
			*/

			var tickercontents=new Array()
			tickercontents[0]='<a href="http://www.gooditaly.net/notizie">30 Agosto 2008 - 06:47 - Ultime notizie</a>'
tickercontents[1]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: Rimini: Selighini `Complimenti ai miei ragazzi` - DataSport.it</a>'
tickercontents[2]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: UFFICIALE: Vicenza, ceduti Tecchio e Zentil</a>'
tickercontents[3]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: TMW A CALDO Â? Parma-Rimini, la voce dei protagonisti</a>'
tickercontents[4]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: Serie A - “Il calcio in chiaro ha di nuovo dignitŕ”</a>'
tickercontents[5]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: Nizza, Yahia sul piede di partenza</a>'
tickercontents[6]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: La novitĂ sarĂ la “marmellata” del Milan?</a>'
tickercontents[7]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: …Abbruscato, uomo promozione</a>'
tickercontents[8]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: …Con Pierluigi Di Santo</a>'
tickercontents[9]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: Palermo, quasi fatta per Levan Mchedlidze</a>'
tickercontents[10]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: Mass torna sulle maglie?</a>'
tickercontents[11]='<a href="http://www.gooditaly.net/notizie">Ultime notizie: Spezia, si aggrega il portiere Polizzi</a>'
tickercontents[12]='<a href="http://www.gooditaly.net/notizie">Altre le notizie su Gooditaly.net/it/notizie</a>'


			var tickdelay=6000 //delay btw messages
			var highlightspeed=10 //10 pixels at a time.

			////Do not edit pass this line////////////////

			var currentmessage=0
			var clipwidth=0

			function changetickercontent(){
			crosstick.style.clip="rect(0px 0px auto 0px)"
			crosstick.innerHTML=tickercontents[currentmessage]
			highlightmsg()
			}

			function highlightmsg(){
			var msgwidth=crosstick.offsetWidth
			if (clipwidth<msgwidth){
			clipwidth+=highlightspeed
			crosstick.style.clip="rect(0px "+clipwidth+"px auto 0px)"
			beginclip=setTimeout("highlightmsg()",20)
			}
			else{
			clipwidth=0
			clearTimeout(beginclip)
			if (currentmessage==tickercontents.length-1) currentmessage=0
			else currentmessage++
			setTimeout("changetickercontent()",tickdelay)
			}
			}

			function start_ticking(){
			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
			