/**
 * 
 */
$(function(){
    $('#menuInst').mouseenter(function(){
        $('#submInstit').show().mouseleave(function() {
            $(this).hide();
        });
    });
});
