//for scrollTo
	//<![CDATA[
		jQuery(function( $ ){
				//borrowed from jQuery easing plugin
				//http://gsgd.co.uk/sandbox/jquery.easing.php
				//see jquery.easing.1.3.js for available tweens
				$.easing.easeOutQuint = function (x, t, b, c, d) {
      		return c*((t=t/d-1)*t*t*t*t + 1) + b;
				};
			
			//by default, the scroll is only done vertically ('y'), change it to both.
			$.scrollTo.defaults.axis = 'xy'; 			

			$.scrollTo( 0 );//reset the screen to (0,0)
			
			//nav, shows how to scroll the whole window
			//HOME SECTION NAV
			$('#nav_home a.home').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
				//$.scrollTo( 1000, 800 ); //will scroll diagnol
				$.scrollTo( {top:'0px', left:'0px'}, 900, { easing:'easeOutQuint' } );// first number: where (x and y), second number: duration
				return false;
			});
						
			$('#go_content').click(function(){
				$.scrollTo( {top:'000px', left:'0000px'}, 2000, { easing:'easeOutQuint' } );
				return true;
			});
			
			$('#exit').click(function(){
				$.scrollTo( {top:'0px', left:'6000px'}, 3000, { easing:'easeOutQuint' } );
				return true;
			});
			
		});
		//]]>

