$(document).ready(function() {
    
    	$("#instind").hide();
    	$("#instdom").hide();
    	$("#instcom").hide();
    	
    	$("#buto_instind").click(function(evento){
        evento.preventDefault();
        $('#instind').toggle('fast');
	    });
	    
	    $("#buto_instdom").click(function(evento){
        evento.preventDefault();
        $('#instdom').toggle('fast');
	    });
	    
	    $("#buto_instcom").click(function(evento){
        evento.preventDefault();
        $('#instcom').toggle('fast');
	    });
});
