  $(document).ready(function(){
      $("#one").animate({marginLeft:"0px"}, 1000);
      
      setTimeout(function(){
			$("#two").animate({marginLeft:"0px"}, 1000);
			},500);
			setTimeout(function(){
			$("#three").animate({marginLeft:"0px"}, 1000);
			},1000);
			setTimeout(function(){
			$("#four").animate({marginLeft:"0px"}, 1000);
			},1500);
			setTimeout(function(){
			$("#five").fadeIn();
			},2500);
			
			$('.picture').hover(
			function () {
				$(this).children('span').show();
			},
			function () {
        $(this).children('span').hide();
      }
			);
  });
