/**
 * move animate
 *
 */
jQuery(function() {
	(function($) {
		// cloudy in the section - resume
		$('#section-3 div.the-cloud').move({
			direction: 'x',
			speed: 20,
			range: 1755,
			loop: false
		});
		
		
		
		// navigation in the section - contact
		$('#go-to-treetop').move({
			direction: 'y'
		});
		
		
		
		// tire in the sction - contact
		$('#the-tire').rotate({
			degree: 10,
			speed: 155
		});
		
		
		
	})(jQuery);
});
