function initMenu() {
    $("#navigation > li").hover(function() {
        $("#navigation li ul").stop(false, true);
        $(this).find("ul li").width(jQuery(this).find("ul").width()); 
        $(this).find("ul").fadeIn();
    }, function() {
        $("#navigation ul li").each(function() { $(this).stop(false, true);});
        $("#navigation ul").css("display", "none");
    });

    $("#navigation ul li").hover(function() {
        if ($.browser.msie &&  ($.browser.version == "7.0" || $.browser.version == "6.0")) { $(this).css({marginBottom:"-3"}) ; }
        $("#navigation ul li div").stop(false, true);
        var topPos = $(this).position().top;
        var leftPos = $(this).position().left + $(this).width();
        $(this).find("div").css({ top: topPos, left: leftPos });
        $(this).find("div").fadeIn();
    }, function() {
        if ($.browser.msie) { $(this).css({marginBottom:"0"}) ; }
        $("#navigation ul li div").each(function() { $(this).stop(false, true);});
        $("#navigation ul div").css("display", "none");
    });
}