var x = $(document);
x.ready(iniciaEvento);
function iniciaEvento(){	
	//resaltaDiv();
	mainmenu();

}

function mainmenu(){
  $("#imgHom").hover(function(){
	$("#icono").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#icono").html("");
	});
  $("#imgCer").hover(function(){
	$("#iconoCer").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#iconoCer").html("");
	});
  $("#imgSec").hover(function(){
	$("#iconoCec").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#iconoCec").html("");
	});
  $("#imgCon").hover(function(){
	$("#iconoCon").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#iconoCon").html("");
	});		
  $("#imgCoa").hover(function(){
	$("#iconoCoa").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#iconoCoa").html("");
	});	
  $("#imgOff").hover(function(){
	$("#iconoOff").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#iconoOff").html("");
	});	  
  $("#imgEmp").hover(function(){
	$("#iconoEmp").html("<img src='images/esferas_menu.png' width='24' height='25' style='padding:0px; margin:0px;' />");
	},function(){
		$("#iconoEmp").html("");
	});	
	$("#menuIzq").css({'height':'300px'});
			
}