$(window).load(function(){
	// Ajout bouton FOOTER BAR
	var bouton = $('<div>&nbsp;</div>').prependTo('#footer .footerWrapper');
 	bouton.addClass('switchMore');
 	
 	// Recupération sidebar
 	var sideBarContent = $("#sidebar").clone(true);
 	$("#sidebar").remove();
 	sideBarContent.appendTo('#footer');
 	// Ouverture / Fermeture
 	bouton.click(function(){
 		var currentHeight = parseInt($('#footer').height());
 		var sideBarHeight = parseInt($("#sidebar").height());
 		
 		var maxHeight = 52 + sideBarHeight;

 		if(currentHeight == 52)
 		{
 			$('#footer').stop().animate({
    			'height': maxHeight + 'px'
		    }, 500, 'linear', function(){
		    	bouton.removeClass('switchMore').addClass('switchLess');
		    }); 			
 		}
 		else
 		{
 			$('#footer').stop().animate({
    			'height': 52 + 'px'
		    }, 500, 'linear', function(){
		    	bouton.removeClass('switchLess').addClass('switchMore');
		    });
 		}
 	});
});