$(document).ready(function () {
	// => define user's platform
	//var platform = (navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod')
	// => Instantiate scrollTo() Functionality
	$('nav a').live('click', function(e) {
		// If a link has been clicked, scroll the page to the link's hash target:
		$("#wrapper").scrollTo( this.hash || 0, 1500);//1500
		e.preventDefault();
	});
	

	
	// => iOS CSS Positioning Work-Around
	if(navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod') {
		//$("#mainNav").css("position", "static");
		
		//$.fx.off
	};
	
});
