function inita () {
	var menuh = document.getElementById("menu");
	var alldiv = menuh.getElementsByTagName("DIV");
	for (i=0; i<alldiv.length; i++) {
		alldiv[i].onmouseover=function() {
			this.style.background = "url(/i/in/bgmas.gif) 0 0 no-repeat";
			this.getElementsByTagName("A")[0].style.background = "url(/i/in/bgmas2.gif) top right no-repeat";
			this.getElementsByTagName("A")[0].style.color = "#fff";
		}
		alldiv[i].onmouseout=function() {
			this.style.background = "none";
			this.getElementsByTagName("A")[0].style.background = "url(/i/in/bgma.gif) top right no-repeat";
			this.getElementsByTagName("A")[0].style.color = "#999";			
		}
	}
	alldiv[alldiv.length-1].onmouseout=function() {
		this.style.background = "none";
		this.getElementsByTagName("A")[0].style.background = "none";
		this.getElementsByTagName("A")[0].style.color = "#999";	
	}	
}

window.onload = function() {
   inita();
}

window.onresize = function() {
   inita();
}