$(document).ready(function() {
 $("#liste-photos .photo a").click(function(e)
	{
		e.preventDefault();
		$("#detail_photo img").replaceWith('<img src="'+this.href+'" />');
	});
 /*.image(
   "http://farm4.static.flickr.com/3124/3108616026_776ec1ec53.jpg",
   function(){
     alert("Image OK !");
   }
 );*/
});
