/**
 * JQZoom Evolution Remove 1.0.1 - Removes Javascript Image magnifier
 *
 * 	this removes any instances of JQZoom, so that they can be enabled.  Useful for applying to dynamically set images 	
 *
 *
 * Copyright (c) 1000camels (1000camels@gmail.com)
 *
 * $Date: 10-15-2009
 *
 *	ChangeLog:
 *  
 * $License : GPL
 */
(function($)
{
	$.fn.jqzoomRemove = function()
	{
		return this.each(function()
		{
    		//console.log('removing plugin');
				$(this).unbind();
				$(this).removeAttr('style');
		});
	}
})(jQuery);
