window.onload = function() {
	var tags = document.getElementsByTagName("img");
	for (var i = 0; i <  tags.length  ; i++) {
		if (tags[i].className == "photo") {
			tags[i].onmouseover = function() {
				thisId = this.id;
				this.src = "img/box180x180.gif";
				newId = thisId.replace("photo", "nome");
				document.getElementById(newId).className = "over";
			}
			tags[i].onmouseout = function() {
				thisId = this.id;
				this.src = "img/box180x180_empty.gif";
				newId = thisId.replace("photo", "nome");
				document.getElementById(newId).className = "";
			}
		}
	}
	var tags = document.getElementById("menuItems").getElementsByTagName("div");
	for (var i = 0; i <  tags.length  ; i++) {
		if (tags[i].className != "current" && tags[i].className != "border" && tags[i].id != "subMenu" ) {
			tags[i].onmouseover = function() {
				thisId = this.id;
				document.getElementById(thisId).className = "selected";
			}
			tags[i].onmouseout = function() {
				thisId = this.id;
				document.getElementById(thisId).className = "";
			}
		}
	}
	var button = document.getElementById("menu_linee");
	button.onmouseover = function() {
		this.className = "over";
	}
	button.onmouseout = function() {
		this.className = "";
	}
}