$(document).ready(function () {
	animate();
	
});

function animate() 
{
	bounce(false);
	
	setTimeout("animate()", 3000);
}

function bounce(time) {
	$('#logocloud').animate(
		{
			width: 70,
	    	height: 60,
	    	left: "+5px",
	    	top: "+6px"
	  	}, 300, "swing", function() {
			
	$('#logocloud').animate(
		{
	    	width: 95,
	    	height: 85,
	    	left: "-7.5px",
	    	top: "-7.5px"
	  	}, 300, "swing", function() {
		
	$('#logocloud').animate(
		{
			width: 70,
	    	height: 60,
	    	left: "+5px",
	    	top: "+6px"
	  	}, 300, "swing", function() {
			
	$('#logocloud').animate(
		{
	    	width: 80,
	    	height: 71,
	    	left: "0px",
	    	top: "0px"
	  	}, 300, "swing", function() {
		
		  	
  	});    
  	});	  	
  	});    
  	});
}
