﻿(function($){ $.fn.jqueryzoom=function(options){ var settings={ xzoom:200, yzoom:200, offset:10, position:"right", lens:1, preload:1
}; if(options){$.extend(settings,options)}
var noalt='';$(this).hover(function(){ var imageLeft=$(this).offset().left; var imageTop=$(this).offset().top; var imageWidth=$(this).children('img').get(0).offsetWidth; var imageHeight=$(this).children('img').get(0).offsetHeight; noalt=$(this).children("img").attr("alt"); var bigimage=$(this).children("img").attr("jqimg"); $(this).children("img").attr("alt",''); if($("div.zoomdiv").get().length==0){ $(this).after("<div class='zoomdiv'><img class='bigimg' src='"+bigimage+"'/></div>"); $(this).append("<div class='jqZoomPup'>&nbsp;</div>")
}
if(settings.position=="right"){ if(imageLeft+imageWidth+settings.offset+settings.xzoom>screen.width){ leftpos=imageLeft-settings.offset-settings.xzoom
}
else{leftpos=imageLeft+imageWidth+settings.offset}
}
else{ leftpos=imageLeft-settings.xzoom-settings.offset; if(leftpos<0){ leftpos=imageLeft+imageWidth+settings.offset
}
}
var zoomdivTop = '0'; var zoomdivLeft = '327px'; $("div.zoomdiv").css({top:zoomdivTop,left:zoomdivLeft}); $("div.zoomdiv").width(settings.xzoom); $("div.zoomdiv").height(settings.yzoom); $("div.zoomdiv").show(); if(!settings.lens){ $(this).css('cursor','crosshair')
}
$(document.body).mousemove(function(e){ mouse=new MouseEvent(e); var bigwidth=$(".bigimg").get(0).offsetWidth; var bigheight=$(".bigimg").get(0).offsetHeight; var scaley='x'; var scalex='y'; if(isNaN(scalex)|isNaN(scaley)){ var scalex=(bigwidth/imageWidth); var scaley=(bigheight/imageHeight); $("div.jqZoomPup").width((settings.xzoom)/scalex); $("div.jqZoomPup").height((settings.yzoom)/scaley); if(settings.lens){ $("div.jqZoomPup").css('visibility','visible')
}
}
xpos=mouse.x-$("div.jqZoomPup").width()/2-imageLeft; ypos=mouse.y-$("div.jqZoomPup").height()/2-imageTop; if(settings.lens){ xpos=(mouse.x-$("div.jqZoomPup").width()/2<imageLeft)?0:(mouse.x+$("div.jqZoomPup").width()/2>imageWidth+imageLeft)?(imageWidth-$("div.jqZoomPup").width()-2):xpos;ypos=(mouse.y-$("div.jqZoomPup").height()/2<imageTop)?0:(mouse.y+$("div.jqZoomPup").height()/2>imageHeight+imageTop)?(imageHeight-$("div.jqZoomPup").height()-2):ypos
}
if(settings.lens){ $("div.jqZoomPup").css({ top:ypos, left:xpos
})
}
scrolly=ypos; $("div.zoomdiv").get(0).scrollTop=scrolly*scaley;scrollx=xpos; $("div.zoomdiv").get(0).scrollLeft=(scrollx)*scalex
})
}, function(){ $(this).children("img").attr("alt",noalt); $(document.body).unbind("mousemove"); if(settings.lens){ $("div.jqZoomPup").remove()
}
$("div.zoomdiv").remove()
}); count=0; if(settings.preload){ $('body').append("<div style='display:none;' class='jqPreload"+count+"'>sdsdssdsd</div>"); $(this).each(function(){ var imagetopreload=$(this).children("img").attr("jqimg");var content=jQuery('div.jqPreload'+count+'').html(); jQuery('div.jqPreload'+count+'').html(content+'<img src=\"'+imagetopreload+'\">')
})
}
}
})(jQuery); function MouseEvent(e){ this.x=e.pageX; this.y=e.pageY
}
var loadingImage = 'loading.gif'; var closeButton = 'close.gif'; function getPageScroll(){ var yScroll; if (self.pageYOffset) { yScroll = self.pageYOffset;} else if (document.documentElement && document.documentElement.scrollTop){ yScroll = document.documentElement.scrollTop;} else if (document.body) { yScroll = document.body.scrollTop;}
arrayPageScroll = new Array('',yScroll)
return arrayPageScroll;}
function getPageSize(){ var xScroll, yScroll; if (window.innerHeight && window.scrollMaxY) { xScroll = document.body.scrollWidth; yScroll = window.innerHeight + window.scrollMaxY;} else if (document.body.scrollHeight > document.body.offsetHeight){ xScroll = document.body.scrollWidth; yScroll = document.body.scrollHeight;} else { xScroll = document.body.offsetWidth; yScroll = document.body.offsetHeight;}
var windowWidth, windowHeight; if (self.innerHeight) { windowWidth = self.innerWidth; windowHeight = self.innerHeight;} else if (document.documentElement && document.documentElement.clientHeight) { windowWidth = document.documentElement.clientWidth; windowHeight = document.documentElement.clientHeight;} else if (document.body) { windowWidth = document.body.clientWidth; windowHeight = document.body.clientHeight;}
if(yScroll < windowHeight){ pageHeight = windowHeight;} else { pageHeight = yScroll;}
if(xScroll < windowWidth){ pageWidth = windowWidth;} else { pageWidth = xScroll;}
arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight)
return arrayPageSize;}
function pause(numberMillis) { var now = new Date(); var exitTime = now.getTime() + numberMillis; while (true) { now = new Date(); if (now.getTime() > exitTime)
return;}
}
function getKey(e){ if (e == null) { keycode = event.keyCode;} else { keycode = e.which;}
key = String.fromCharCode(keycode).toLowerCase(); if(key == 'x'){ hideLightbox();}
}
function listenKey () { document.onkeypress = getKey;}
function showLightbox(objLink)
{ var objOverlay = document.getElementById('overlay'); var objLightbox = document.getElementById('lightbox'); var objCaption = document.getElementById('lightboxCaption'); var objImage = document.getElementById('lightboxImage'); var objLoadingImage = document.getElementById('loadingImage'); var objLightboxDetails = document.getElementById('lightboxDetails'); var arrayPageSize = getPageSize(); var arrayPageScroll = getPageScroll(); if (objLoadingImage) { objLoadingImage.style.top = (arrayPageScroll[1] + ((arrayPageSize[3] - 35 - objLoadingImage.height) / 2) + 'px'); objLoadingImage.style.left = (((arrayPageSize[0] - 20 - objLoadingImage.width) / 2) + 'px'); objLoadingImage.style.display = 'block';}
objOverlay.style.height = (arrayPageSize[1] + 'px'); objOverlay.style.display = 'block'; imgPreload = new Image(); imgPreload.onload=function(){ objImage.src = objLink.href; var lightboxTop = arrayPageScroll[1] + ((arrayPageSize[3] - 35 - imgPreload.height) / 2); var lightboxLeft = ((arrayPageSize[0] - 20 - imgPreload.width) / 2); objLightbox.style.top = (lightboxTop < 0) ? "0px" : lightboxTop + "px"; objLightbox.style.left = (lightboxLeft < 0) ? "0px" : lightboxLeft + "px"; objLightboxDetails.style.width = imgPreload.width + 'px'; if(objLink.getAttribute('title')){ objCaption.style.display = 'block'; objCaption.innerHTML = objLink.getAttribute('title');} else { objCaption.style.display = 'none';}
if (navigator.appVersion.indexOf("MSIE")!=-1){ pause(250);}
if (objLoadingImage) { objLoadingImage.style.display = 'none';}
selects = document.getElementsByTagName("select"); for (i = 0; i != selects.length; i++) { selects[i].style.visibility = "hidden";}
objLightbox.style.display = 'block'; arrayPageSize = getPageSize(); objOverlay.style.height = (arrayPageSize[1] + 'px'); listenKey(); return false;}
imgPreload.src = objLink.href;}
function hideLightbox()
{ objOverlay = document.getElementById('overlay'); objLightbox = document.getElementById('lightbox'); objOverlay.style.display = 'none'; objLightbox.style.display = 'none'; selects = document.getElementsByTagName("select"); for (i = 0; i != selects.length; i++) { selects[i].style.visibility = "visible";}
document.onkeypress = '';}
function initLightbox()
{ if (!document.getElementsByTagName){ return;}
var anchors = document.getElementsByTagName("a"); for (var i=0; i<anchors.length; i++){ var anchor = anchors[i]; if (anchor.getAttribute("href") && (anchor.getAttribute("rel") == "lightbox")){ anchor.onclick = function () {showLightbox(this); return false;}
}
}
var objBody = document.getElementsByTagName("body").item(0); var objOverlay = document.createElement("div"); objOverlay.setAttribute('id','overlay'); objOverlay.onclick = function () {hideLightbox(); return false;}
objOverlay.style.display = 'none'; objOverlay.style.position = 'absolute'; objOverlay.style.top = '0'; objOverlay.style.left = '0'; objOverlay.style.zIndex = '90'; objOverlay.style.width = '100%'; objBody.insertBefore(objOverlay, objBody.firstChild); var arrayPageSize = getPageSize(); var arrayPageScroll = getPageScroll(); var imgPreloader = new Image(); imgPreloader.onload=function(){ var objLoadingImageLink = document.createElement("a"); objLoadingImageLink.setAttribute('href','#'); objLoadingImageLink.onclick = function () {hideLightbox(); return false;}
objOverlay.appendChild(objLoadingImageLink); var objLoadingImage = document.createElement("img"); objLoadingImage.src = loadingImage; objLoadingImage.setAttribute('id','loadingImage'); objLoadingImage.style.position = 'absolute'; objLoadingImage.style.zIndex = '150'; objLoadingImageLink.appendChild(objLoadingImage); imgPreloader.onload=function(){}; return false;}
imgPreloader.src = loadingImage; var objLightbox = document.createElement("div"); objLightbox.setAttribute('id','lightbox'); objLightbox.style.display = 'none'; objLightbox.style.position = 'absolute'; objLightbox.style.zIndex = '100'; objBody.insertBefore(objLightbox, objOverlay.nextSibling); var objLink = document.createElement("a"); objLink.setAttribute('href','#'); objLink.setAttribute('title','Click to close'); objLink.onclick = function () {hideLightbox(); return false;}
objLightbox.appendChild(objLink); var imgPreloadCloseButton = new Image(); imgPreloadCloseButton.onload=function(){ var objCloseButton = document.createElement("img"); objCloseButton.src = closeButton; objCloseButton.setAttribute('id','closeButton'); objCloseButton.style.position = 'absolute'; objCloseButton.style.zIndex = '200'; objLink.appendChild(objCloseButton); return false;}
imgPreloadCloseButton.src = closeButton; var objImage = document.createElement("img"); objImage.setAttribute('id','lightboxImage'); objLink.appendChild(objImage); var objLightboxDetails = document.createElement("div"); objLightboxDetails.setAttribute('id','lightboxDetails'); objLightbox.appendChild(objLightboxDetails); var objCaption = document.createElement("div"); objCaption.setAttribute('id','lightboxCaption'); objCaption.style.display = 'none'; objLightboxDetails.appendChild(objCaption); var objKeyboardMsg = document.createElement("div"); objKeyboardMsg.setAttribute('id','keyboardMsg'); objKeyboardMsg.innerHTML = 'press <a href="#" onclick="hideLightbox(); return false;"><kbd>x</kbd></a> to close'; objLightboxDetails.appendChild(objKeyboardMsg);}
var floatingMenuId = 'ecshopfx_small_cart'; var floatingMenu = { targetX: 0, targetY: 0, hasInner: typeof(window.innerWidth) == 'number', hasElement: document.documentElement
&& document.documentElement.clientWidth, menu:
document.getElementById
? document.getElementById(floatingMenuId)
: document.all
? document.all[floatingMenuId]
: document.layers[floatingMenuId]
}; floatingMenu.move = function ()
{ if (document.layers)
{ floatingMenu.menu.left = floatingMenu.nextX; floatingMenu.menu.top = floatingMenu.nextY;}
else
{ floatingMenu.menu.style.left = floatingMenu.nextX + 'px'; floatingMenu.menu.style.top = floatingMenu.nextY + 'px';}
}
floatingMenu.computeShifts = function ()
{ var de = document.documentElement; floatingMenu.shiftX = floatingMenu.hasInner
? pageXOffset
: floatingMenu.hasElement
? de.scrollLeft
: document.body.scrollLeft; if (floatingMenu.targetX < 0)
{ if (floatingMenu.hasElement && floatingMenu.hasInner)
{ floatingMenu.shiftX += de.clientWidth > window.innerWidth
? window.innerWidth
: de.clientWidth
}
else
{ floatingMenu.shiftX += floatingMenu.hasElement
? de.clientWidth
: floatingMenu.hasInner
? window.innerWidth
: document.body.clientWidth;}
}
floatingMenu.shiftY = floatingMenu.hasInner
? pageYOffset
: floatingMenu.hasElement
? de.scrollTop
: document.body.scrollTop; if (floatingMenu.targetY < 0)
{ if (floatingMenu.hasElement && floatingMenu.hasInner)
{ floatingMenu.shiftY += de.clientHeight > window.innerHeight
? window.innerHeight
: de.clientHeight
}
else
{ floatingMenu.shiftY += floatingMenu.hasElement
? document.documentElement.clientHeight
: floatingMenu.hasInner
? window.innerHeight
: document.body.clientHeight;}
}
}
floatingMenu.doFloat = function()
{ var stepX, stepY; floatingMenu.computeShifts(); stepX = (floatingMenu.shiftX + floatingMenu.targetX - floatingMenu.nextX) * .07; if (Math.abs(stepX) < .5)
{ stepX = floatingMenu.shiftX + floatingMenu.targetX - floatingMenu.nextX;}
stepY = (floatingMenu.shiftY + floatingMenu.targetY - floatingMenu.nextY) * .07; if (Math.abs(stepY) < .5)
{ stepY = floatingMenu.shiftY + floatingMenu.targetY - floatingMenu.nextY;}
if (Math.abs(stepX) > 0 || Math.abs(stepY) > 0)
{ floatingMenu.nextX += stepX; floatingMenu.nextY += stepY; floatingMenu.move();}
}; floatingMenu.addEvent = function(element, listener, handler)
{ if(typeof element[listener] != 'function' || typeof element[listener + '_num'] == 'undefined')
{ element[listener + '_num'] = 0; if (typeof element[listener] == 'function')
{ element[listener + 0] = element[listener]; element[listener + '_num']++;}
element[listener] = function(e)
{ var r = true; e = (e) ? e : window.event; for(var i = element[listener + '_num'] -1; i >= 0; i--)
{ if(element[listener + i](e) == false)
r = false;}
return r;}
}
for(var i = 0; i < element[listener + '_num']; i++)
if(element[listener + i] == handler)
return; element[listener + element[listener + '_num']] = handler; element[listener + '_num']++;}; floatingMenu.init = function()
{ floatingMenu.menu = document.getElementById(floatingMenuId); floatingMenu.initSecondary();}; floatingMenu.initSecondary = function()
{ floatingMenu.computeShifts(); floatingMenu.nextX = floatingMenu.shiftX + floatingMenu.targetX; floatingMenu.nextY = floatingMenu.shiftY + floatingMenu.targetY; floatingMenu.move();}
ecShopAddLoadEvent(floatingMenu.init); 
