

// JavaScript Document
$j(document).ready(
    function(){
    $j("#menu_haut ul li").hover(
            function() {
                            $j(this).children("ul").show();
            }, function() {
                    $j(this).children("ul").fadeOut(200);
            });
    }
    );

