/**
 * Dummy plug-in used for backward compatibility, with the previously used image-zoom feature.
 * 
 * @author Vasile Orza
 * @deprecated please use fancybox instead
 * 
**/
jQuery.fn.imageZoom = function () {
	return this.each(function() {
		$(this).find("a:has(img)").fancybox()
									.each(function() {
										 // work-around for the fancybox image pattern \.(jpg|gif|png|bmp|jpeg)(.*)?$
									    this.href = this.href + "#.png";
									});
	});
};

