function mouseOverLogo(image,sound)
{
	document.getElementById(image).src ="karas_2.gif";
	var thissound = document.getElementById(sound);
	thissound.Play();
}


function mouseOutLogo(image,sound)
{
		document.getElementById(image).src ="karas_1.gif";
  var thissound = document.getElementById(sound);
  thissound.Stop();

}
// --------------------------------------------------------------------------------------
function mouseOverColor(image)
{
	document.getElementById(image).className ="red";
}
function mouseOutColor(image)
{
	document.getElementById(image).className ="grey";
}
//---------------------------------------------------------------------------------------
function MostraDescrizione(desc)
{
	if (!document.getElementById) return;
	var descrizione = document.getElementById(desc);

	if ( descrizione.className == 'descrizione_invisibile' ) 
	descrizione.className = 'descrizione_visibile';
	else descrizione.className = 'descrizione_invisibile';
}
