var MenuTop=146;

//var WindowWidth=getWindowWidth();
var adjustment = getWindowWidth();


if (ie55)
{
    var Menu01Left=WindowWidth/2 - 50;
	var Menu02Left=WindowWidth/2 - 50;
	var Menu03Left=WindowWidth/2 - 50;
}
else
{
    var Menu01Left=WindowWidth/2 - 260;
	var Menu02Left=WindowWidth/2 - 146;
	var Menu03Left=WindowWidth/2 - 50;
}

function getWindowWidth(){
    adj = 0;
	if (ie4){
		WindowWidth=document.body.clientWidth;
	}
	if (ns4){
		WindowWidth=window.innerWidth;
		MenuTop -= 1;
	}
	if (ns6){
		WindowWidth=document.body.clientWidth;
		MenuTop -= 5;
	}
	return adj;
}


function windowResizeHandler(){	
	if(ns4){
		window.document.location.href=window.document.location.href;
	}else{
		window.document.location.reload();
	}
}

if(ie4){
	window.onresize = windowResizeHandler;
}else if (ie5){
	window.captureEvents(Event.RESIZE);
	window.onresize = windowResizeHandler;
}