/* Author: 

 */
$(document).ready(function() {
    $("#navmenu>ul li").mouseover(function() {
        $(this).addClass('mouseover');
        if ($(this).is('.last')) {
            $(this).find('ul').css({"display":"block", "left":"auto"});
        } else {
            $(this).find('ul').css({"display":"block", "left":"0"});
        }
        $(this).find('ul').stop().animate({ top: "30px", opacity: "0.8" }, 200, "swing");
    });
    $("#navmenu>ul li").mouseout(function() {
        $(this).removeClass('mouseover');
        $(this).find('ul').stop().animate({ top: "55px", opacity: 0 }, 300, "swing",
                function() {
                    $(this).css("display", "none");
                });
    });

});

























