$(function() {
	var elem = $("img.portraits");
	var fermer = $("img.close");
		
/*	elem.show().each(function () {
	 	elem.click(function (){
			$(this).fadeOut("slow");			
		})
		elem.hover(function (){
		$(this).css('cursor','pointer');
		})
    });
    */
	elem.show().click(function (){
			$(this).fadeOut("slow");
			return false;		
	}).hover(function (){
		$(this).css('cursor','pointer');
	});

	fermer.each(function () {
	 	fermer.click(function (){
			elem.fadeIn("slow");
			return false;
		});
    });

});
