function fancyboxready(){
	if($("#imgRechContenant")){
		//if($("#imgRechContenant #imgRechZoom")) $("#imgRechContenant #imgRechZoom").html('');
		if($("#imgRechContenant a").length>0){
			if($("#imgRechContenant a").length==1){
				$("#imgRechContenant a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'titlePosition'	:	'inside',
		'cyclic'	:	true
	});
			}else{
				var tmptitle=$("#imgRechContenant a:first").attr('title');
				/*$("#imgRechContenant a:first").attr('rel','');
				$("#imgRechContenant a:first").click(function(){
					$("#imgRechContenant table a:first").click();
					return(false);
			   });*/
				$("#imgRechContenant a").each(function(){ 
					$(this).attr('onClick','');
					$(this).attr('title',tmptitle);
				}); 
				$("#imgRechContenant a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'titlePosition'	:	'inside',
		'cyclic'	:	true
	});
			}
		}
	}
	if($(".p_txt_img")){
		$(".p_txt_img a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'titlePosition'	:	'inside',
		'cyclic'	:	true
	});
		
	}
}
fancyboxready();
