﻿ $(document).ready(function() {
  $('#product, #star, .landing #zoneFlash h1').css({opacity: 0});
  $('#product').css({top: '110px'});
 });

// Not only when the DOM is ready, but when the images have finished loading
$(window).bind('load', function () {
  $('#product').animate({top: '91px', opacity: 1}, 1000);
  $('#star').animate({opacity: 1 }, 2500);
  $('.landing #zoneFlash h1').animate({opacity: 1 }, 2500); 
});

