/* ------------------------ INIT ------------------------ */
$(document).ready(function(){
	replaceBackground();
});

/* ------------------------ EVENEMENTS ------------------------ */
$(document).bind("changeGlobalDivHeight", function(){
	replaceBackground();
});

/*
 * Place le background de la page chargee
 */
function replaceBackground(){
	// Hauteur Fenetre
	windowHeight = $(window).height();

	// Hauteur de la div global
	globalDivHeight = $('#global').innerHeight();

	if(globalDivHeight < windowHeight)
		$('#global').css({
			height:windowHeight
		});
}