/**
 * @class
 * @static
 * @name imagezoom
 * @version 1.0 
 */
jQuery(document).ready(function() {
			if (true) return;
			var f = function(event) {
				//console.log("ready ..")
				jQuery(this).jqzoom(); 
			};
			jQuery("[data-bov3-image-zoom='true']").each(function() {
				jQuery(this).jqzoom();
			});
			/*
			jQuery("[data-bov3-image-zoom='true']").mousemove(function(e) {
				var pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
				var clientCoords = "( " + e.clientX + ", " + e.clientY + " )";
				var t = jQuery(this).find("~ span#info");
				if (t.size()==0) jQuery(this).parent().append("<span id='info'></span>")
				jQuery("span#info").text("( e.pageX, e.pageY ) - " + pageCoords + " " +
										"( e.clientX, e.clientY ) - " + clientCoords);
			});
			*/

});


