var SMenu1=0,	 SMenu2=0, SMenu3=0,SMenu4=0,
	Timer;
function ControlMenu(){
	if (screen.width<=1024){
	if(SMenu1==1) document.all["Menu1"].style.left=screen.width*160/1024; else document.all["Menu1"].style.left=-160; 
	if(SMenu2==1) document.all["Menu2"].style.left=screen.width*335/1024; else document.all["Menu2"].style.left=-335;
	if(SMenu3==1) document.all["Menu3"].style.left=screen.width*465/1024; else document.all["Menu3"].style.left=-465; 
	if(SMenu4==1) document.all["Menu4"].style.left=screen.width*638/1024; else document.all["Menu4"].style.left=-638;
	}
	if (screen.width==1152){
	if(SMenu1==1) document.all["Menu1"].style.left=215; else document.all["Menu1"].style.left=-160; 
	if(SMenu2==1) document.all["Menu2"].style.left=400; else document.all["Menu2"].style.left=-335;
	if(SMenu3==1) document.all["Menu3"].style.left=520; else document.all["Menu3"].style.left=-465; 
	if(SMenu4==1) document.all["Menu4"].style.left=693; else document.all["Menu4"].style.left=-638;
	}
	if (screen.width>=1280){
	if(SMenu1==1) document.all["Menu1"].style.left=screen.width*280/1280; else document.all["Menu1"].style.left=-160; 
	if(SMenu2==1) document.all["Menu2"].style.left=screen.width*455/1280; else document.all["Menu2"].style.left=-335;
	if(SMenu3==1) document.all["Menu3"].style.left=screen.width*585/1280; else document.all["Menu3"].style.left=-465; 
	if(SMenu4==1) document.all["Menu4"].style.left=screen.width*758/1280; else document.all["Menu4"].style.left=-638;
	}
	}

function ShowMenu(p){   SMenu1=1;	}
function HideMenu(p){	   SMenu1=0;	}
function ShowMenu2(l){  SMenu2=1;	}
function HideMenu2(l){   SMenu2=0;	}
function ShowMenu3(i){  SMenu3=1; 	}
function HideMenu3(i){   SMenu3=0;	}
function ShowMenu4(i){  SMenu4=1;	}
function HideMenu4(i){   SMenu4=0;	}
	
function StartMenuControl(){
	Timer=window.setInterval("ControlMenu()",1); 
	}