	window.onload = function initialLoad(){
		updateOrientation();
	}
	
	function updateOrientation(){
		switch(window.orientation){
			case 0:
			break;
			
			case -90:
			alert("This portion of the site was designed to be viewed in portrait mode.\n Turn your device back upright for the best experience.");
			break;
			
			case 90:
			alert("This portion of the site was designed to be viewed in portrait mode.\n Turn your device back upright for the best experience.");
			break;
			
			case 180:
			//location.reload(true);
			break;
		}
	}
