
/* Infos estimations gratuites tableau sculpture estampes */

function show(x){

$('div.infs').css("display","none");

$(x).fadeIn(2000);

}

/* Infos légales */

jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);
}

function show_infos(x){
 $(x).fadeToggle(450,'','');
}

/* 

<script type="text/javascript">

$(document).ready(function(){ 

 $('div.infs').css("display","none");

});

</script>
 */
 
/* 
jQuery.fn.fadeToggle = function(speed, easing, callback) {
   
   return this.animate({opacity: 'toggle'}, speed, easing, callback);
};


function show(x){

$('div.infs').css("display","none");

$(x).fadeToggle(2000,'','');

}

       

if ($("div.infs", $(this)).css("display")=="block") {
$($(this)).css("display","none");
} 

*/


/* 
 
$(".infs").each(function(){
 if ($(this).css("display")=="block") {
 $(this).css("display","none");
 } 
});

*/





       
