
animateClouds = function ()
{		
	cloud1Move();
	cloud2Move();
	cloud3Move();
}
	
function cloud1Move()
{

    $('#cloud1').delay(0).animate({ marginLeft: "500px" }, 40000, "linear", function () { cloud1Move() });
    $('#cloud1').delay(0).animate({ marginLeft: "0px" }, 40000, "linear", function () { cloud1Move() });	
		
}	
	
function cloud2Move()
{
    $('#cloud2').delay(0).animate({ marginLeft: "150px" }, 45000, "linear", function () { cloud2Move() });
    $('#cloud2').delay(0).animate({ marginLeft: "840px" }, 45000, "linear", function () { cloud2Move() });	
			
}
	
function cloud3Move()
{
    $('#cloud3').delay(0).animate({ marginLeft: "890px" }, 40000, "linear", function () { cloud3Move() });
    $('#cloud3').delay(0).animate({ marginLeft: "-10px" }, 40000, "linear", function () { cloud3Move() });			
}
	
	
	 

