<!-- hide script from old browsers
	
	//id="flashlinkNUMERO_PROGRESSIVO" flashtype="0 oppure 1" flashcolor="COLORE"
	//Nell'attributo "flashlink" dovremo aggiungere (senza spazi) un numero progressivo partendo da 0 (zero). Ciò significa che un eventuale secondo link avrà valore numerico 1 e così via. È possibile applicare l'effetto ad un numero praticamente infinito di collegamenti. 
	//L'attributo "flashtype" può assumere i valori 0 oppure 1. Con 0 cambierà il colore del testo mentre con 1 varierà il colore dello sfondo del link. 
	//L'attributo "flashcolor" indica il colore dell'intermittenza. Può essere inserito qualsiasi valore che indichi un colore. 

	var flashlinks=new Array()

	function changelinkcolor(){
		for (i=0; i< flashlinks.length; i++){
			var flashtype=document.getElementById? flashlinks[i].getAttribute("flashtype")*1 : flashlinks[i].flashtype*1
			var flashcolor=document.getElementById? flashlinks[i].getAttribute("flashcolor") : flashlinks[i].flashcolor
					
			if (flashtype==0){
				if (flashlinks[i].style.color!=flashcolor)
					flashlinks[i].style.color=flashcolor
				else
					flashlinks[i].style.color=''
			}
			else if (flashtype==1){
				if (flashlinks[i].style.backgroundColor!=flashcolor)
					flashlinks[i].style.backgroundColor=flashcolor
				else
					flashlinks[i].style.backgroundColor=''
			}
		}
	}

	function init(){
		var i=0
				
		if (document.all){
			while (eval("document.all.flashlink"+i)!=null){
			flashlinks[i]= eval("document.all.flashlink"+i)
			i++
			} 
		}
		else if (document.getElementById){
			while (document.getElementById("flashlink"+i)!=null){
			flashlinks[i]= document.getElementById("flashlink"+i)
			i++
			}
		}
				
		setInterval("changelinkcolor()", 500)
	}

	if (window.addEventListener)
		window.addEventListener("load", init, false)
	else if (window.attachEvent)
		window.attachEvent("onload", init)
	else if (document.all)
		window.onload=init

//-->
