$(document).ready(function() {	
						   mon_display();
						   });

$(window).resize(function() {
						  mon_display();
						  });


function mon_display(){
	
var hauteur = $("#droite").height();

var image=$("#background img").height();

$("body").height(hauteur);
$("#background").height(hauteur);

if(image>hauteur){
$("#background img").css('bottom','auto');
$("#background img").css('top','0px');
}
else{
$("#background img").css('bottom','0px');
$("#background img").css('top','auto');
}
/*
var bouteille = $("#bouteille").height();
var logo = $("#logo").height();
var hauteur_windows = $(window).height();

gauche=bouteille*1+logo*1;

if(gauche>hauteur_windows){
$("#bouteille").addClass('bouteillefixe');
}
else{
$("#bouteille").removeClass('bouteillefixe');
}*/

}

