


//Cufon.replace(".cufon");

$(document).ready(function(){
	
	$("a.gdBox").fancybox({
				'titleShow'		: false
			});
	
	
	var taille=0;
	$(".box_text").each(function(){
		if (taille < $(this).height()){
			taille=$(this).height();
		 }
		
			  
	});
	$("#box1 .box_text").height(taille);
	$("#box2 .box_text").height(taille);
	$("#box3 .box_text").height(taille);
	
});


