// JavaScript Document
$(document).ready(function(){
		setInterval(function(){
			$('#leaf_1').rotate({
				angle: 0,
				animateTo: 3,
				duration: 2500,
				callback: function(){   $(this).rotate({
						animateTo: -5,
						callback: function(){   $(this).rotate({
						animateTo: -0
						});  }
						});  }
			});
			
		},6600);
		
		setInterval(function() {
						$('#leaf_2').rotate({
				angle: 0,
				animateTo: 4,
				duration: 2500,
				callback: function(){   $(this).rotate({
						animateTo: -4,
						callback: function(){   $(this).rotate({
						animateTo: 0
						});  }
						});  }
			});

			}, 6500);
			
		setInterval(function() {
			$('#leaf_3').rotate({
				angle: 0,
				animateTo:6,
				duration: 2500,
				callback: function(){   $(this).rotate({
						animateTo: -8,
						callback: function(){   $(this).rotate({
						animateTo: -0
						});  }
						});  }
			});

			}, 6800);
			
			
		

	});
