
$(function() {
	$('.coverGalleryPriview')
		.click(function() {
			$('#coverGalleryPreview').parent().dialog('destroy');
			$('#coverGalleryPreview').remove();
			$('<img src="' + $(this).attr('href') + '" title="' + $(this).text() + '" id="coverGalleryPreview" />')
				.appendTo(document.body)
				.hide()
				.load(function() {
					$.sfWindow.open('#coverGalleryPreview');
				})
			return false;
		});
});

