/* funzioni javascript importate nella pagina html */
function change_img()
{
    // Check we're working with a DOM compliant browser
    if (document.getElementById && document.createElement)
    {
		pulsanti= new Array("chi_siamo","prodotti","servizi","contattaci");
        document.getElementById("chi_siamo").onmouseover=function (){
			document.getElementById("chi_siamo").src="img/chi_siamo_over.gif";
		}
		document.getElementById("chi_siamo").onmouseout=function (){
			document.getElementById("chi_siamo").src="img/chi_siamo.gif";
		}
		document.getElementById("servizi").onmouseover=function (){
			document.getElementById("servizi").src="img/servizi_over.gif";
		}
		document.getElementById("servizi").onmouseout=function (){
			document.getElementById("servizi").src="img/servizi.gif";
		}
		document.getElementById("prodotti").onmouseover=function (){
			document.getElementById("prodotti").src="img/prodotti_over.gif";
		}
		document.getElementById("prodotti").onmouseout=function (){
			document.getElementById("prodotti").src="img/prodotti.gif";
		}
		document.getElementById("contattaci").onmouseover=function (){
			document.getElementById("contattaci").src="img/contattaci_over.gif";
		}
		document.getElementById("contattaci").onmouseout=function (){
			document.getElementById("contattaci").src="img/contattaci.gif";
		}
    }
}
window.onload=change_img;
function apri(pagina,specifiche) {
	window.open(pagina,"",specifiche);
}