
function bodyOverflow(){
var hh = window.getHeight();
var hauteur = $('bottom').getPosition().y;
if ( hh < hauteur ){
$('body').setStyles({
		'overflow-y': 'scroll'
	});
} else {
$('body').setStyles({
		'overflow-y': 'hidden'
	});
}
}


window.addEvent('resize', function(){
	bodyOverflow();
});