// JavaScript Document


function 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 HadoChangeWidth() { 
	
	var wid;
		
	wid = pageWidth();

	if (wid > 800) {
		wid = ((wid / 2) + 186); 
//		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 = 588;
	}
		
	document.getElementById("memberLinksDiv").style.left = wid + 8 + 'px';
}   

window.onresize = HadoChangeWidth;
window.onload = HadoChangeWidth;