$(document).ready(function() {
			setTimeout("animation()",300);
		});
		
		function animation(){
			
			cloud1();
			cloud2();
			cloud3();
			$("#greetings").animate({top: '90px' }, {queue:false, duration:600, easing:'easeOutBounce'});
			$("#stamp").animate({left: '250px' }, {queue:false, duration:1200, easing:'easeOutBounce'});	
		}
			
		
		
		
		function cloud1(){
			$("#cloud1").animate({left:"+=1500px"},90000).animate({left:"-150px"}, 0)
			setTimeout("cloud1()",9000);
		}
		function cloud2(){
			$("#cloud2").animate({left:"+=1200px"},30000).animate({left:"-250px"}, 0)
			setTimeout("cloud2()",9000);
		}
		function cloud3(){
			$("#cloud3").animate({left:"+=1800px"},50000).animate({left:"-100px"}, 0)
			setTimeout("cloud3()",6000);
		}
