
var updateOrientation = function() {
	return false;
	if(window.orientation == null) return false;
	
	var winOr = window.orientation;
	
	if(winOr == 0 || winOr == 180) {
		document.getElementById("wrapper").style.width = "270px";
	} else {
		document.getElementById("wrapper").style.width = "430px";
	}
	window.scrollTo(0, 1);
	
}