function init_menu(){
	objs=document.getElementById("main_nav").getElementsByTagName("a");
	for(i=0; i<objs.length;i++){
		objs[i].onmouseover=function(){this.getElementsByTagName("img")[0].src="imgs/mi"+this.name+"_a.gif"}
		objs[i].onmouseout=function(){this.getElementsByTagName("img")[0].src="imgs/mi"+this.name+".gif"}
	}
}

window.onload=function(){
	init_menu();
}