$(document).ready(function() {
  
  $(".side a[href*=jpg], a.pop, .gallery-view td a").fancybox({
    showCloseButton:true
  });

  if($('.slideshow').length > 0)
  {
    //Slideshow
    $('.slideshow').each(function(){
      $(this).find('.images').cycle({
        fx: 'scrollHorz',
        pause: 1,
        speed:  800,
        timeout: 6000,
        next: $(this).find('a[data-action=next]'),
        prev: $(this).find('a[data-action=prev]')
      });
      
      $(this).show();
    });
  }
  
});

