$(document).ready(function() {
	$('a[class=_img]').click(function() {
		height	=	$(this).attr('title');
		src		=	$(this).attr('name');
//		actuel	=	$("img[id=IMAGEPRINC]").attr('src').replace('pimages', 'pimages/min2');
		$("img[id=IMAGEPRINC]").fadeOut("slow", function() {
			$("img[id=IMAGEPRINC]").attr('src', "/photos/" + src);
		});
		height	=	$("img[id=IMAGEPRINC]").attr('height', height);
		$("img[id=IMAGEPRINC]").fadeIn();
	});
});