var nav=navigator.userAgent;
if( nav.indexOf("Gecko")==-1 && nav.indexOf("Opera")==-1 && nav.indexOf("Konqueror")==-1 )
	document.write("<style type=\"text/css\">#menubg img{behavior:url(/pngbehavior.htc);}</style>");

// Precarica le immagini del menu
immagini = new Array('home','info','contatti','download');

function img_hover(img) {
	a = document.getElementById(img);
	a.setAttribute("src","/img\/"+img+"_h."+img_lang+".gif");
}
function img_out(img) {
	a = document.getElementById(img);
	a.setAttribute("src","/img\/"+img+"."+img_lang+".gif");
}
function open_prod() {
	p = document.getElementById("prod_a");
	if( p.className == "prod_menu" ) {
		p.className = "prod_menu_sel";
	}
	else {
		p.className = "prod_menu";
	}
}
