/* Author: 

*/
(function($) {
	$(document).ready(function() {
		$('#bird')
			.sprite({fps: 9, no_of_frames: 3})
			.spRandom({top: 50, bottom: 200, left: 100, right: 400})
			.isDraggable()
			.activeOnClick()
			.active();
		$('#clouds').pan({fps: 30, speed: 2, dir: 'left', depth: 10});
		$('#hill2').pan({fps: 30, speed: 2, dir: 'left', depth: 30});
		$('#hill1').pan({fps: 30, speed: 3, dir: 'left', depth: 70});
        //$('#balloons').pan({fps: 30, speed: 3, dir: 'up', depth: 70});
		$('#hill1, #hill2, #clouds').spRelSpeed(8);		
		
		$('body').flyToTap();
		
	});
})(jQuery);























