$(document).ready(function() {
  $('.lightbox').fancybox();
  
  $("a[href='#']").click(function() {return false;});
  
  $('.photo-gallery .hover').show().fadeTo(0,0);
  $('.photo-gallery ul').hover(
    function() {
      $('.hover',this).stop().fadeTo(300,1,'easeOutCirc');
    },
    function() {
      $('.hover',this).stop().fadeTo(300,0,'easeOutCirc')
    }
  );
  
  $('.hidden-js').hide();
  $('<span/>').text(' (Click here to reveal)').insertAfter('.click-to-reveal-hidden-js strong');
  $('.click-to-reveal-hidden-js').css('cursor','pointer').toggle(
    function() {$('.hidden-js',this).stop().slideDown()},
    function() {$('.hidden-js',this).stop().slideUp()}
  );
});
