
$(document).ready(function() 
{
    $("#menu div").each(function() {
    
        $(this).mouseover(function() {
            $(this).children("ul").slideDown("fast");
            /* if($.browser.msie) { var hauteur = $(this).width(); $(this).children("ul").css({marginLeft:"-"+hauteur+"px"});   } */
            if ($.browser.msie) {
                var hauteur = $(this).width();

                var chaine = navigator.userAgent.toLowerCase();
                var reg1 = new RegExp("(msie 8)", "g");
                
                if (chaine.match(reg1)) {
                    $(this).children("ul").css({ marginLeft: "0px" });                    
                }
                else {
                    $(this).children("ul").css({ marginLeft: "-" + hauteur + "px" });                    
                }

            }
            $(this).prev().children("ul").fadeOut("fast");
            $(this).siblings().children("ul").fadeOut("fast");
        });
        
    });
    
    $("body").click(function() {
        $("#menu div ul").fadeOut("fast");
    });
    		
});