jQuery(document).ready(function() {

	
	//var h = t.height() - i.height() - th;
	
	setTimeout( justify_home_blocks_vertical,600);
	
	
	
});

function justify_home_blocks_vertical(){ 
		
	var t = $("table.bloc_home:eq(0)");
	var i = $("table.bloc_home:eq(0) .visuel");
	
	var th = $("table.bloc_home:eq(0) div.part_left .titre").height();
	
	var h = t.height() - 40;

	$("table.bloc_home:eq(0) div.part_left .txt").height(h - 12);
	
	$("table.bloc_home:eq(0) .bloc1 .txt").height(h - i.height());
	
	$("table.bloc_home:eq(0) .bloc2 .txt").height(h - i.height() - $("table.bloc_home:eq(0) .bloc2 .txt2").height() - 5);
	
	$("table.bloc_home:eq(0) .bloc3 .txt").height(h - i.height());
	
}
