
var WindowWidth=getWindowWidth();

//alert(WindowWidth/2);

var Menu01Left=93;
var Menu02Left=230;
var Menu03Left=Menu02Left+92;
var Menu04Left=Menu03Left+120;
var Menu05Left=Menu04Left+180;

var MenuTop=99;

function getWindowWidth(){
	if (ie4){
		WindowWidth=document.body.clientWidth;
	}
	if (ns4){
		WindowWidth=window.innerWidth;
		WindowWidth-=45;
	}
	if (ie5){
		WindowWidth=document.body.clientWidth;
		WindowWidth-=30;
	}
	return WindowWidth;
}
