$(document).ready(function () {
    /*--------------------top menu---------------------*/
    $("#top-menu li a").mouseover(function () {
        $(this).parent().parent().children("li").not($(this).parent()).children("ul").slideUp();
        $href = $(this).attr("href");
        if ($href == "#") {
            $(this).next().slideDown();
            return false;
        }
    })
    $("#top-menu").mouseleave(function () {
        $("#top-menu li").children('.submenu').slideUp();
    })
});

