/**
 * Initialize the jQuery functions
 */ 
jQuery(function($)
{
  initFancybox();
});

function initFancybox () {
  if (! $('.gallery a').length ) return;
  
  $('.gallery a').fancybox({
    zoomOpacity: true,
    zoomSpeedIn: 300,
    zoomSpeedOut: 300,
    zoomSpeedChange: 200,
    overlayShow: true,
    overlayOpacity: 0.6
  });
}

/* Popup Function for Impress */
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
