$(document).ready(init);

function init(){
	// MENU PRINCIPAL
	$("#mMenu li div").css("opacity", 0);
	$("ul#mMenu li").stop().hover(showInfo, hideInfo);

}


// FUNCIONES MENU PRINCIPAL
function showInfo(){
	$(this).find("div").removeClass("oculto").animate({"opacity": 1}, 500);
}
function hideInfo(){
	$(this).find("div").animate({"opacity": 0}, 500).addClass("oculto");
}
function cambiaEstilo(id, value) {
    document.getElementById(id).style.display = value;
}





