<!--
// SPE_Elenco_1 version 1.0
// 05/10/2003
// Developed by:  Esperia - www.esperia.com
// For info about this script contact massimo.altafini@esperia.com

function Inizializza(){
	var righe=document.getElementsByTagName('tr');
	for(i=0;i<righe.length;i++){
		if(righe[i].parentNode.parentNode.className=='Elenco' || righe[i].parentNode.parentNode.className=='Elenco Statistiche'){
			righe[i].className='OFF'
			righe[i].onfocus = function(){this.blur()}
			righe[i].onmouseover = function(){this.className='ON'}
			righe[i].onmouseout = function(){this.className='OFF'}
		}
	}
	var celle=document.getElementsByTagName('td');
	for(i=0;i<celle.length;i++){
		if(celle[i].className=='CellaLink'){
			celle[i].onfocus = function(){this.blur()}
			celle[i].onmouseover = function(){this.className='ON'}
			celle[i].onmouseout = function(){this.className='OFF'}
		}
	}
}
window.onload = function(){Inizializza()}
//-->