//Adjust header based on screen size. Wretched Absolute positioning!
function headeradjust(v) {
			
			var w = pageWidth();
			var nw;
			//var nw = ((((w - 940)/2)-30)/w)*100;
			if(v) {
				nw = ((w - 940)/2)-32;
			} else {
				nw = ((w - 940)/2)- 25;
			}
			//$("#header").get(0).style.width = nw+'%';
			$("#header").get(0).style.left = nw+'px';
}
