// JavaScript Document
function setCurrentButton()
{

var filename = location.href.substring(location.href.lastIndexOf('/')+1);


if (filename=='')
{	
document.getElementById("MenuHome").style.backgroundImage='url(images/btt_home_pushed.png)';
}
else if (filename=='homepage_model3.asp')
{	
document.getElementById("MenuHome").style.backgroundImage='url(images/btt_home_pushed.png)';
}
else if (filename=='presentazione.asp')	
{
document.getElementById("MenuPresentazione").style.backgroundImage='url(images/btt_presentazione_pushed.png)';
}
else if (filename=='certificazioni.asp')	
{
document.getElementById("MenuCertificazioni").style.backgroundImage='url(images/btt_certificazioni_pushed.png)';
}
else if (filename=='contatti.asp')	
{
document.getElementById("MenuContatti").style.backgroundImage='url(images/btt_contatti_pushed.png)';
}

else document.getElementById("MenuProdotti").style.backgroundImage='url(images/btt_prodotti_pushed.png)';

//else (filename=='prodotti.asp')	document.getElementById("MenuProdotti").style.backgroundImage='url(images/btt_prodotti_pushed.png)';
} 
//document.getElementById("MenuHome").style.backgroundPosition="bottom";
