// Browser Window Size and Position// copyright Stephen Chapman, 3rd Jan 2005, 8th Dec 2005// you may copy these functions but please keep the copyright notice as wellfunction pageWidth() {	return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ?       document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;	} var top1, top2;function DelilahChangeWidth() { 		var wid;			wid = pageWidth();	if (wid > 700) {		wid = ((wid / 2) - 216); //		if	(BrowserDetect.OS == 'Windows')//			wid = wid - 10;//		if	(BrowserDetect.browser == 'Firefox')//			wid = wid - 5;						// ie down 5 px 5 right		if (navigator.appName.indexOf("Internet Explorer") != -1){		//	document.getElementById("overmenu_btn_shop").style.top = top1 + 5 + 'px';		//	document.getElementById("overmenu_btn_newsroom").style.top = top2 + 5 + 'px';			wid = wid + 10;		}				if (navigator.appVersion.indexOf("Win")!=-1)			wid = wid - 10;		if(navigator.userAgent.indexOf("Firefox")!=-1){			var versionindex=navigator.userAgent.indexOf("Firefox")+8			if (parseInt(navigator.userAgent.charAt(versionindex))>=1)			wid = wid - 5;				}		} else {		wid = 156;	}			document.getElementById("overmenu_btn_shop").style.left = wid + 'px';	document.getElementById("overmenu_btn_newsroom").style.left = wid + 'px';}   function InitChangeWidth() {	document.getElementById("overmenu_btn_shop").style.top = "282px";		DelilahChangeWidth();}window.onresize = DelilahChangeWidth;window.onload = DelilahChangeWidth;
