$.fn.image=function(src){return this.each(function(){var i=new Image();i.src=src;i.height=369;this.appendChild(i);});}
$(document).ready(function(){$(".liensstatiques").hide();$(".contenu").show();$(".gallery_photo>li").children('img').each(function(i){$(this).click(function(){$('.gallery_photo_affichee').empty();$('.gallery_photo_affichee').image($(this).attr('src'));})}).hover(function(){$(this).fadeTo("slow",1.0);},function(){$(this).fadeTo("slow",0.6);});$(".gallery_photo img").fadeTo("slow",0.6);$(".bordure_contenu").show();});