$(document).ready(function(){  


setTimeout(function(){
						animate_oo1();
						setTimeout(function(){ animate_oo2(); },200);
							},3000);	

function animate_oo1()
	{
					$("#o-first").animate({ marginTop: "-5px",marginLeft:"-5px", width:"112px",height:"111px" },150);
					$("#o-first > img").animate({ width:"112px",height:"111px" },150);
					setTimeout(function(){ 
											$("#o-first").animate({ marginTop:"0px",marginLeft:"0px",width:"102px",height:"101px" },150);
											$("#o-first > img").animate({ width:"102px",height:"101px" },150);
											setTimeout(function(){ animate_oo1(); },3000);
											},150);
	}

function animate_oo2()
	{
					$("#o-second").animate({ marginTop: "-5px",marginLeft:"-5px", width:"87px",height:"86px" },150);
					$("#o-second > img").animate({ width:"87px",height:"86px" },150);
					setTimeout(function(){ 
											$("#o-second").animate({ marginTop:"0px",marginLeft:"0px",width:"77px",height:"76px" },150);
											$("#o-second > img").animate({ width:"77px",height:"76px" },150);
											setTimeout(function(){ animate_oo2(); },3000);
											},150);
	}
	

}); // end jQuery
