$(document).ready(function () {
    $(".submenuHover").hover(function () {
        var submenuId = $(this).attr("id");
        $("#" + submenuId + "Box").stop(true, true).slideDown("fast");
    }, function () {
        var submenuId = $(this).attr("id");
        $("#" + submenuId + "Box").stop(true, true).fadeOut("fast");
    });
});
