$(document).ready(function(){
    $(".menu_group").hoverIntent(makeTall,makeShort);
})

function makeTall() {
    $("#"+$(this).attr('id')+" ul.submenu:first").slideDown("fast");
}

function makeShort() {
    $("#"+$(this).attr('id')+" ul.submenu:first").slideUp("fast");
}
