$(document).ready(function(){
	//Contenido
	$('.subMenu').hide();
	
	//Btn1
	$(".btn1 a").hover(function () {
		$('.inst').show();
	});
	
	$(".inst").bind("mouseenter",function(){
      $(this).show();
    }).bind("mouseleave",function(){
      $(this).hide();
    });
    
    //Btn2
	$(".btn2 a").hover(function () {
		$('.hacer').show();
	});
	
	$(".hacer").bind("mouseenter",function(){
      $(this).show();
    }).bind("mouseleave",function(){
      $(this).hide();
    });
    
    //Btn3
	$(".btn3 a").hover(function () {
		$('.busco').show();
	});
	
	$(".busco").bind("mouseenter",function(){
      $(this).show();
    }).bind("mouseleave",function(){
      $(this).hide();
    });


});
