jQuery(document).ready(function(){

    // BOUNCE DE TIBO
    jQuery("ul.menu_gauche li ul li a").mouseenter(function(){
        jQuery(this).animate({ paddingLeft: "40px" }, 150 )
                    .animate({ backgroundPosition: "0px" }, 50 )
                    .animate({ backgroundPosition: "20px" }, 150 );
    }).mouseleave(function(){
        jQuery(this).stop(true, false);
        jQuery(this).animate({ backgroundPosition: "10" }, 150 );
        jQuery(this).animate({ paddingLeft: "30" }, 150 );
                     
    }); 
    
    ResizeSiteHeight();
    
});



    function ResizeSiteHeight()
    {	
        // handle bottom div
        var hauteur_max = Math.max(jQuery("#colonne_gauche").outerHeight(), jQuery("#colonne_principale").outerHeight());              
        jQuery("#colonne_gauche").css("height", hauteur_max);   
        jQuery("#backgroundBottom").css("margin-top", hauteur_max+147); 
        jQuery("#colonne_principale").css("height", hauteur_max);        
    }