
		(function($) {
			$(document).click(function() {
				$('#bird')
					.sprite({fps: 6, no_of_frames: 2})
					/*.spRandom({
						top: 100,
						left: 100,
						right: 800,
						bottom: 400,
						speed: 3500,
						pause: 1000
					});*/
					.active()
					.activeOnClick();
				$('html').flyToTap(); // the active sprite will fly to any clicked point on the page...
			});
		})(jQuery);
