$(document).ready(function() {
			setTimeout("animation()",300);
		});
		
		function animation(){
			sun_raft();
			cloud1();
			cloud2();
			cloud3();
			$("#greetings").animate({top: '125px' }, {queue:false, duration:600, easing:'easeOutBounce'});
			$("#stamp").animate({left: '595px' }, {queue:false, duration:1200, easing:'easeOutBounce'});	
		}
			
		function sun_raft(){
			$("#sun").animate({opacity:".7"},1000).animate({opacity:"1"},1000);
			$("#helicopter").animate({top:"-=30px"},900).animate({top:"+=30px"}, 900);
			$("#helicopter1").animate({top:"-=10px"},500).animate({top:"+=10px"}, 500);
			$("#helicopter2").animate({top:"-=20px"},1500).animate({top:"+=20px"}, 1500);
			setTimeout("sun_raft()",2000);
		}
		function cloud1(){
			$("#cloud1").animate({left:"+=1900px"},50000).animate({left:"-150px"}, 0)
			
		}
		function cloud2(){
			$("#cloud2").animate({left:"+=1300px"},9000).animate({left:"-250px"}, 0)
			setTimeout("cloud2()",9000);
		}
		function cloud3(){
			$("#cloud3").animate({left:"+=1300px"},6000).animate({left:"-100px"}, 0)
			setTimeout("cloud3()",6000);
		}
