﻿function swapImage(swapImg,swapZoomImg)
{
  document.getElementById('ImageGalleryImage').src = swapImg;
  document.getElementById('ImageGalleryZoomer').href = swapZoomImg;
  preloadImg = new Image();
  preloadImg.src = swapZoomImg;
  if (document.getElementById('ImageGalleryVideo').style.display == 'block') {
    initZoom();
  }
}

$(document).ready(function() {
});

function initZoom() {
  var options = {
    title: false,
    showPreload: true,
    preloadText: 'Loading zoom',
    zoomWidth: 454,
    zoomHeight: 439,
    showEffect: 'fadein',
    hideEffect: 'fadeout',
    fadeinSpeed: 'fast',
    fadeoutSpeed: 'fast' }
  $('.Zoomer').jqzoom(options);
}
function stopZoom() {
  $('.Zoomer').unbind();
  $('#ImageGalleryZoomer').css({cursor: 'pointer'});
}

