//						 -------------------------------------
//						|Code pour le recadrage de l'interface|
//						 -------------------------------------
$(function(){
	//$oldHomeNewsHeight=$("#home_news").height();
	recadrage();
});
$(window).resize(recadrage);
function recadrage(){
	var hauteurMin=$("#navig").height()+35;
	$("#home_news").height($("#news_content").height()+30);
	if(hauteurMin<=$("#page").height()){
		hauteurMin=$("#page").height()+40;
	}
	$("#content").height(hauteurMin);
	$("#all").height($("#content").height()+250);
	if($("#content").height()+250<$(window).height()){
		$("#all").height($(window).height());
		$("#content").height($("#all").height()-250);
		$("#home_news").height($("#content").height()-35);
	}
}
