﻿	window.onload = function initialLoad(){		updateOrientation();	}		function updateOrientation(){		var contentType = "show_";		switch(window.orientation){			case 0:			contentType += "vertical";			break;						case -90:			contentType += "horizontal";			break;						case 90:			contentType += "horizontal";			break;						case 180:			contentType += "vertical";			break;		}	document.getElementById("page_wrapper").setAttribute("class", contentType);	}
