/*$(document).ready(function() {   */
$(window).load(function() {   
  
  /* gestion de l'espace au dessus du slider */
  var $hauteur_win = $(document).height();
  if ($hauteur_win < 946){
		  $('#footer').css('margin-top','60px');   
  }

 	/* pour opera */		
	if(navigator.userAgent.indexOf("Opera") >= 0){
	  $('#slidebottom').css('height','74px');
	  $('#colophon').css('height','74px');
	  $('#footer').css('height','74px');
	  $('.inner').css('bottom','0');	  

    if ($hauteur_win < 991){
  		  $('#footer').css('margin-top','60px'); 
    }
	}


  /* gestion du slider */
	$("#slidebottom #btn_footer").toggle(function() {
		$('.inner').animate({ height: "204" }, 1000);
		$('#btn_footer').removeClass('up');
		$('#btn_footer').addClass('down');

	},function() {
		$('.inner').animate({ height: "74" }, 1000);
		$('#btn_footer').removeClass('down');
		$('#btn_footer').addClass('up');
	});
})	
