$(document).ready(function()
{
  // hide imprint
  closeContent();
  
  // init lightboxes
  // shop overlay
  $("#shopBtn a").fancybox({
    'titlePosition' : 'inside',
    'transitionIn' : 'none',
    'transitionOut' : 'none',
    'padding' : 0,
    'overlayColor' : '#262626',
    'onComplete' : function() {
      // add class for fixed postion
      $('#fancybox-wrap').addClass('fixed');
      // hide shop button
      $('#shopBtn').hide();
    },
    'onClosed' : function() {
      // show shop button
      $('#shopBtn').show();
    }
  });

  // shop item overlay
  $(".productgallery").fancybox({
    'titlePosition' : 'inside',
    'transitionIn' : 'none',
    'transitionOut' : 'none',
    'overlayColor' : '#262626',    
    'padding' : 30
  });
});

/**
 *  display in page contents
 **/
function showContent(layerId)
{
  // hide all other contents
  $('.pages').hide();
  // position and show content
  var yPos = $(document).height() - $('#' + layerId).height() - 73; // footer height is 73 px
  $('#' + layerId).css('top', yPos);
  $('#' + layerId).fadeIn('fast');
}

/**
 *  display in page contents
 **/
function closeContent()
{
  // hide all contents
  $('.pages').hide();
}
