$(document).ready(function() {
	centrageVertical();
	
	$(window).resize(function() {
		centrageVertical();
	});
	
});

// centrage vertical pour résolutions > 800*600
function centrageVertical() {
	
	hauteurPage = $(document).height();
	hauteurContenu =690;
	
	if (hauteurPage > hauteurContenu) {
		difference = hauteurPage - hauteurContenu;
		document.body.style.paddingTop = (difference/2) +"px";
	}
	else {
		document.body.style.paddingTop = '10px';
	}
}
