<!--

	function evidenziaRiga() 			{	this.id = "selezionata";	}
	function evidenziaRigaOff()		{	this.id = "";	}

	function testoCanzone()
	{
		if ( this.cells[ 0 ].textContent )
			numeroCanzone = parseInt( this.cells[ 0 ].textContent );
		else
			numeroCanzone = parseInt( this.cells[ 0 ].innerText );

		window.location.href = "testi-traduzioni-grinderman-dettaglio.php?Testo="+ numeroCanzone;
	}

	var TabellaCanzoni = document.getElementById( "tabellaCanzoni" );

	if ( TabellaCanzoni )
	{
		Righe = TabellaCanzoni.rows;
		for ( indice = 1; indice < Righe.length; indice ++ )
		{
			Riga = Righe[ indice ];
			Riga.onmouseover = evidenziaRiga;
			Riga.onmouseout = evidenziaRigaOff;
			Riga.onclick = testoCanzone;
		}
	}

//-->