/* Cloud Zoom V1.0.3 Rev 201209181857 (c) 2010-2012 by R Cecco. MIT License Please retain this copyright header in all versions of the software */ (function ($) { var scripts = document.getElementsByTagName("script"),last = scripts[scripts.length-1].src.lastIndexOf('/'),scriptPath = scripts[scripts.length-1].src.slice(0,last);$(document).ready(function (){});function format(str) {for (var i = 1; i < arguments.length; i++) {str = str.replace('%' + (i - 1), arguments[i]);}return str;};function CloudZoom(jWin, opts) {var sImg = $('img', jWin),img1,img2,zoomDiv = null,$mouseTrap = null,lens = null,$tint = null,softFocus = null,$ie6Fix = null,zoomImage,controlTimer = 0,cw, ch, destU = 0,destV = 0,currV = 0,currU = 0,filesLoaded = 0,mx,my,ctx = this, zw;setTimeout(function () {if ($mouseTrap === null) {var w = jWin.width();jWin.parent().append(format('
Loading...
', w / 3, (w / 2) - (w / 6)));$('cloud-zoom-loading', jWin.parent()).css('opacity', 0.5)}}, 200);var ie6FixRemove = function () {if ($ie6Fix !== null) {$ie6Fix.remove();$ie6Fix = null;}};this.removeBits = function () {if (lens) {lens.remove();lens = null;}if ($tint) {$tint.remove();$tint = null;}if (softFocus) {softFocus.remove();softFocus = null;}ie6FixRemove(); $('.cloud-zoom-loading', jWin.parent()).remove();};this.destroy = function () {jWin.data('zoom', null); if ($mouseTrap) {$mouseTrap.unbind();$mouseTrap.remove();$mouseTrap = null;}if (zoomDiv) {zoomDiv.remove();zoomDiv = null;}this.removeBits();};this.fadedOut = function () {if (zoomDiv) {zoomDiv.remove();zoomDiv = null;}this.removeBits();};this.controlLoop = function () {if (lens) { var x = (mx - sImg.offset().left - (cw * 0.5)) >> 0;var y = (my - sImg.offset().top - (ch * 0.5)) >> 0;if (x < 0) {x = 0;}else if (x > (sImg.width() - cw)) {x = (sImg.width() - cw);}if (y < 0) {y = 0;}else if (y > (sImg.height() - ch)) {y = (sImg.height() - ch);}lens.css({left: x,top: y});lens.css('background-position', (-x) + 'px ' + (-y) + 'px');destU = (((x) / sImg.width()) * zoomImage.width) >> 0;destV = (((y) / sImg.height()) * zoomImage.height) >> 0;currU += (destU - currU) / opts.smoothMove;currV += (destV - currV) / opts.smoothMove;zoomDiv.css('background-position', (-(currU >> 0) + 'px ') + (-(currV >> 0) + 'px'));} controlTimer = setTimeout(function () {ctx.controlLoop();}, 30);};this.init2 = function (img, id) {filesLoaded++;if (id === 1) {zoomImage = img;}if (filesLoaded === 2) {this.init();}};this.init = function () {$('.cloud-zoom-loading', jWin.parent()).remove();var $m = $("
");$mouseTrap = jWin.parent().append($m).find(':last');$mouseTrap = $('.mousetrap',jWin.parent());$mouseTrap.css({width:sImg.width(),height:sImg.height(),top:0,left:0,position:'absolute',zIndex:100});$mouseTrap.bind('mousemove touchmove', this, function (event) {mx = event.pageX;my = event.pageY;if (event.type == "touchmove") {var touch = event.originalEvent.touches[0];mx = touch.pageX,my = touch.pageYevent.preventDefault();}}).bind('click', this, function (event) {event.preventDefault();return false;});$mouseTrap.bind('mouseleave touchend', this, function (event) {clearTimeout(controlTimer);if(lens) {lens.fadeOut(299);}if($tint) {$tint.fadeOut(299);}if(softFocus) {softFocus.fadeOut(299);}zoomDiv.fadeOut(300, function () {ctx.fadedOut();});return false;});$mouseTrap.bind('mouseenter touchstart', this, function (event) {mx = event.pageX;my = event.pageY;zw = event.data;if (zoomDiv) {zoomDiv.stop(true, false);zoomDiv.remove();}var xPos = opts.adjustX,yPos = opts.adjustY;var siw = sImg.width();var sih = sImg.height();var w = opts.zoomWidth;var h = opts.zoomHeight;if (opts.zoomWidth == 'auto') {w = siw;}if (opts.zoomHeight == 'auto') {h = sih;}var appendTo = jWin.parent();switch (opts.position) {case 'top':yPos -= h;break;case 'right':xPos += siw;break;case 'bottom':yPos += sih; break;case 'left':xPos -= w;break; case 'inside':w = siw; h = sih; break;default:appendTo = $('#' + opts.position);if (!appendTo.length) {appendTo = jWin;xPos += siw;yPos += sih;} else {w = appendTo.innerWidth();h = appendTo.innerHeight();}}zoomDiv = appendTo.append(format('', xPos, yPos, w, h, zoomImage.src)).find(':last');zoomDiv = $('.cloud-zoom-big',appendTo);if (sImg.attr('title') && opts.showTitle) {zoomDiv.append(format('
%0
', sImg.attr('title'))); $('.cloud-zoom-title', zoomDiv).css('opacity', opts.titleOpacity);}zoomDiv.fadeIn(500);if (lens) {lens.remove();lens = null;}cw = (sImg.width() / zoomImage.width) * zoomDiv.width();ch = (sImg.height() / zoomImage.height) * zoomDiv.height();lens = jWin.append(format("", cw, ch)).find(':last');lens = $('.cloud-zoom-lens',jWin);$mouseTrap.css('cursor', lens.css('cursor'));var noTrans = false;if (opts.tint) {lens.css('background', 'url("' + sImg.attr('src') + '")');$tint = jWin.append(format('