

$(document).ready(function () {
	initDisplay();
});

$(window).resize(function () {
	initDisplay();
});

function initDisplay() {
    //alert($(document).height());
	$('#menu').css("top", "25px");
	$('.tabContenu').css("height", ($(document).height() - 120) + "px");
}
