$(function () {
	$('#diapos img').click(function () {
		// var pos = {top:this.offsetTop, right:this.offsetLeft+160};
		$('.zoom').remove();
		$(this)
			.clone()
			.attr('src', this.src.replace('vignettes', ''))
			.addClass('zoom')
			.css({top:this.offsetTop, right:0, position:'absolute', height:'auto'}) //width:160, height:120, 
			.appendTo('#diapos')
			.animate({width:640})
			.click(function () {$(this).fadeOut('fast', function () {$(this).remove()})})
		;
	});
});