var url = window.location.href;
var sf = "";
if (url.indexOf("server-asp")>-1) sf = "www.precom.it/";

window.onload = function() {
	var tags = document.getElementById("menu").getElementsByTagName("img");
	for (var i = 0; i <  tags.length  ; i++) {
		tags[i].onmouseover = function() {
			thisId = this.id;
			Hilite(thisId, true);
		}
		tags[i].onmouseout = function() {
			thisId = this.id;
			Hilite(thisId, false);
		}
	}	
}
// Preload + Rollover Script
var source = "img/";
var rollSuffix = "_on";
var ext = ".jpg";

// Preload
function preload(name, n) {	
	img[n] = new Image();
	img[n].src = source + name + rollSuffix + ext;
}
var img = new Array();
menuItems = new Array;
menuItems[0] = "menu_azienda";
menuItems[1] = "menu_qualita";
menuItems[2] = "menu_news";
menuItems[3] = "menu_prodotti";
menuItems[4] = "menu_job";
menuItems[5] = "menu_links";
for (n=0; n<menuItems.length; n++) {
	preload(menuItems[n], n);
}
// Rollover
function Hilite(name, over) {
	//if(window.document.images) {
		if (over) {
			var path = document.getElementById(name).src
			path = path.replace('.jpg', '_on.jpg')
			document.getElementById(name).src = path;
		} else {
			var path = document.getElementById(name).src
			path = path.replace('_on.jpg', '.jpg')
			document.getElementById(name).src = path;
		}	
	//}
}
