$(document).ready(function() {
    // put all your jQuery goodness in here.

    $(".menu-gauche").hover(function(){
        if($(this).attr('id') != $actual) {
            $("#image-haut-gauche").children().css('z-index','1');

            //$("#image-haut-gauche").children().hide();

            //$("#image_"+$(this).attr('id')).css('z-index','5');

            $("#image_"+$actual).fadeOut('slow');
            $("#image_"+$(this).attr('id')).fadeIn('slow');

            $actual=$(this).attr('id');
        }
    },function(){});


    //Animation menu du haut
    $("#menu-haut ul li a").hover(function(){
        $(this).animate(
        {
            style: 'border-bottom:5px solid #cce420;padding-bottom:6px;'
        },
        'slow'
        );
    },function(){
        $(this).animate(
        {
            style: 'border-bottom:0px solid #cce420;padding-bottom:0px;'
        },
        'slow'
        );
    });

});
