// JavaScript Document
function cloudAnimation(timedelay){
		var t = timedelay;
		var tmore = timedelay + 100;
		$('#movingCloudOne').css({left: '940px', top:"5px"});		
		$('#movingCloudOne').animate({left:"-350px", top:"5px"}, t);
		var loop = setTimeout("cloudAnimation("+t+")", tmore);
	}
	function cloudAnimation2(timedelay){
		var t = timedelay;
		var tmore = timedelay + 500;
		$('#movingCloudTwo').css({left: '940px', top:"150px"});		
		$('#movingCloudTwo').animate({left:"250px", top:"150px"}, t);
		var loop = setTimeout("cloudAnimation2("+t+")", tmore);
	}
	function cloudAnimation3(timedelay){
		var t = timedelay;
		var tmore = timedelay + 700;
		$('#movingCloudThree').css({left: '940px', top:"160px"});		
		$('#movingCloudThree').animate({left:"250px", top:"160px"}, t);
		var loop = setTimeout("cloudAnimation3("+t+")", tmore);
	}
	function cloudAnimation4(timedelay){
		var t = timedelay;
		var tmore = timedelay + 500;
		$('#movingCloudFour').css({left: '940px', top:"35px"});		
		$('#movingCloudFour').animate({left:"-350px", top:"35px"}, t);
		var loop = setTimeout("cloudAnimation4("+t+")", tmore);
	}
	
$(document).ready(function(){
	setTimeout("cloudAnimation(64000)",400);
	setTimeout("cloudAnimation2(75000)",6700);
	setTimeout("cloudAnimation3(74000)",100);
	setTimeout("cloudAnimation4(55000)",8800);
	


	
});
