$(document).ready(function(){

//Remove URL bar on iPhone	
	if (navigator.userAgent.indexOf('iPhone') != -1) {
	        addEventListener("load", function() {
	                setTimeout(hideURLbar, 0);
	        }, false);
	}
	
	function hideURLbar() {
	        window.scrollTo(0, 1);
	}

//Auto scroll to start of article		
	function scrollDown(){
		if ($('#start').length != 0) {
		    $.scrollTo( '#start', {easing:'easeOutExpo', duration:1000 });;
		}
	}

	setTimeout(scrollDown, 1000);
	
});
