$(document).ready(function(){
		$('.blocks').each(
			function (i) {
				var $item = $(this); 
   			 	setTimeout(function() { 	 	 
	   			 	 $item.fadeIn(400);
	  			  }, 200*i);
 		 });
 		 setTimeout(function(){
 		 		$('#block1').fadeOut(600, function(){
 		 			$(this).css("background-image", "url(/auto/theme/landart2012/assets/logo_hp.png)");
 		 			$(this).fadeIn(600, function(){
 		 				$(this).delay(1400).fadeOut(600, function(){
 		 					$(this).css("background-image", "url(/auto/theme/landart2012/assets/1_1.png)");
 		 					$(this).fadeIn(600);
 		 					$('#content').fadeIn(1200);
 		 				});
 		 			});
 		 		});
 		 	}, 2000
 		 );

	/*how to replace one element with another one*/
	$("div.phonelink").click(function () {
			$(this).replaceWith("Phone No: 03 9728 2800");
	});

});
