function homePhotos()
{
  $('.big-photo').show();
  $('#photos li').hover(function() {
    $(this).find('.big-photo').fadeOut();
  },
  function() {
    $(this).find('.big-photo').fadeIn();
  });
}
$(document).ready(homePhotos);

