//Funcion para cargar los eventos del menu
//function loadMenuJS(){
$().ready(function() {     
	$(".submenuContainer").hide();
	
	$("#enlaces").bind('mouseover',function(){
		$("#enl").show();	
	}).bind('mouseout',function(){
		$("#enl").hide();
	});
     
    $("#portafolio").bind('mouseover',function(){
		$("#port").show();	
	}).bind('mouseout',function(){
		$("#port").hide();
	});
	
	$("#integra").bind('mouseover',function(){
		$("#int").show();	
	}).bind('mouseout',function(){
		$("#int").hide();
	});
});    
//}
