﻿//menu
$(document).ready(function () {
    $('li.mainlevel').hover(function () {
        $('li.mainlevel').stop(true, true).not($(this)).find('.ulbox').slideUp();
        $(this).find('.ulbox').stop(true, true).slideDown(); //you can give it a speed
    }, function () {
        $('li.mainlevel').stop(true, true).find('.ulbox').slideUp();
    });
    $('li.mainlevel .ulbox').hover(function () {

        //        alert($(this).css("display") == "block");
        //        if ($(this).css("display") != "block") {
        //            alert($(this).css("display") + "||" + $(this).height());
        //        }
    }, function () { $(this).slideUp(); });

});


