jQuery(document).ready(function() {
  
  if (window.location.pathname === "/") {
    setTimeout(function() {
      $('div#container').fadeIn(1000);
    }, 500);    
  } else {
    $('div#container').css('display','block');
  }

  if ($('a.lightbox').length) {
    $('a.lightbox').fancybox();
  }

  $('a.thumbnail').mouseover(function() {
    $('span', this).fadeIn('fast');
  });
  
  $('a.thumbnail span').mouseout(function() {
    $(this).fadeOut('fast');
  });
    
}); // end ready
