function getAbsX(O){var xP,t;O=gO(O);if(O){xP=O.offsetLeft;var t=O.offsetParent;while(t!=null){xP+=t.offsetLeft;t=t.offsetParent;}return xP;}else return false;}
function getAbsY(O){var yP,t;O=gO(O);if(O){yP=O.offsetTop;var t=O.offsetParent;while(t!=null){yP+=t.offsetTop;t=t.offsetParent;}return yP;}else return false;}
function getWidth(O){O=gO(O);if(O)return O.offsetWidth;else return false;}
function getHeight(O){O=gO(O);if(O)return O.offsetHeight;else return false;}

var setVisible=new Function('O','s','O=String(O);gO(O).style.visibility=s?\''+(navigator.userAgent.indexOf("Opera")==-1?'inherit':'visible')+'\':\'hidden\';');
function move(O,X,Y){O=String(O);if(parseInt(Y)==Y){Y=String(Y)+'px';gO(O).style.top=Y;}if(parseInt(X)==X){X=String(X)+'px';gO(O).style.left=X;}}
/*
function move(O,X,Y){O=String(O);if(Y){Y=String(Y)+'px';gO(O).style.top=Y;}if(X){X=String(X)+'px';gO(O).style.left=X;}}
*/
function gO(O){return document.getElementById?document.getElementById(String(O)):document.all(String(O));}

function setClip(O,X,Y,W,H){
	if(!document.all){
		if(H-1>=0)H=H-1;
		gO(O).style.width=W;
		gO(O).style.height=H;
		gO(O).style.clip='rect('+Y+' '+W+' '+H+' '+X+')';
		}
	}

function SetItem(Mn,It,st){
	var a,b;
	if(st){
		if(Menu[Mn].Over.Fr[It]&&Menu[Mn].Over.Bk[It]){
			a=gO(Mn+'_Item_'+It);
			b=gO(Mn+'_Item_'+It+'_Text');
			a.style.background=Menu[Mn].Over.Bk[It];
			b.style.color=Menu[Mn].Over.Fr[It];
			}
		if(gO(Mn+'_Item_'+It+'_Image')&&Menu[Mn].Over.Img[It]){
			gO(Mn+'_Item_'+It+'_Image').src=Menu[Mn].Over.Img[It];
			}
		}
	else{
		if(Menu[Mn].Out.Fr&&Menu[Mn].Out.Bk[It]){
			a=gO(Mn+'_Item_'+It);
			b=gO(Mn+'_Item_'+It+'_Text');
			a.style.background=Menu[Mn].Out.Bk[It];
			b.style.color=Menu[Mn].Out.Fr[It];
			}
		if(gO(Mn+'_Item_'+It+'_Image')&&Menu[Mn].Out.Img[It]){
				gO(Mn+'_Item_'+It+'_Image').src=Menu[Mn].Out.Img[It];
			}
		
		}
	}	


function WMObj(Nome,Indice,Left,Top,Width,Height,BgColor){
	var Cnt=new String();
	Cnt+=('<DIV ID="'+Nome+'_Item_'+Indice+'_Line" STYLE="position:absolute;top:'+Top+'px;left:'+Left+'px;width:'+Width+'px;height:'+Height+'px;'+(BgColor!=undefined?'background:'+BgColor:'')+';visibility:inherit;cursor:default;z-index:2;">');
	Cnt+=('<TABLE WIDTH="'+Width+'" HEIGHT="'+Height+'" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
	Cnt+=('<TR><TD NOWRAP>'+Menu[Nome].Items.Text[Indice]+'</TD></TR></TABLE></DIV>');
	if(Menu[Nome].Property.Type.toLowerCase()=='main'&&document.all&&document.getElementById&&navigator.userAgent.indexOf("Opera")==-1)
    	document.all(Nome).innerHTML+=Cnt;
    else
		document.write(Cnt);
	}

function WMLine(Nome,Indice,Left,Top,Width,Height,BgColor){
	var Cnt=new String();
	Cnt+=('<DIV ID="'+Nome+'_Item_'+Indice+'_Line" STYLE="position:absolute;top:'+Top+'px;left:'+Left+'px;width:'+Width+'px;height:'+Height+'px;'+(BgColor!=undefined?'background:'+BgColor:'')+';visibility:inherit;cursor:default;z-index:2;">');
	Cnt+=('<TABLE WIDTH="'+Width+'" HEIGHT="'+Height+'" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
	Cnt+=('<TR><TD NOWRAP><SPACER TYPE="BLOCK" WIDTH="'+Width+'" HEIGHT="'+Height+'"></TD></TR></TABLE></DIV>');
	if(Menu[Nome].Property.Type.toLowerCase()=='main'&&document.all&&document.getElementById&&navigator.userAgent.indexOf("Opera")==-1)
    	document.all(Nome).innerHTML+=Cnt;
    else
		document.write(Cnt);
	}

function WMItem(Nome,Indice,Left,Top,Width,Height){
	var Cnt=new String();
	var Align;
	var VAlign;
	var ImgAlign;
	var ImgVAlign;

	switch(Menu[Nome].Common.TxtAlign[Indice].substr(0,1).toLowerCase()){
		case 'c':
			Align='CENTER';
			break;
		case 'l':
			Align='LEFT';
			break;
		default:
			Align='RIGHT';
			break;
		}
	switch(Menu[Nome].Common.TxtAlign[Indice].substr(1,1).toLowerCase()){
		case 't':
			VAlign='TOP';
			break;
		case 'b':
			VAlign='BOTTOM';
			break;
		default:
			VAlign='MIDDLE';
			break;
		}

	if(Menu[Nome].Common.ImgAlign[Indice])
		switch(Menu[Nome].Common.ImgAlign[Indice].substr(0,1).toLowerCase()){
			case 'c':
				ImgAlign='CENTER';
				break;
			case 'l':
				ImgAlign='LEFT';
				break;
			default:
				ImgAlign='RIGHT';
				break;
			}
	if(Menu[Nome].Common.ImgAlign[Indice])
		switch(Menu[Nome].Common.ImgAlign[Indice].substr(1,1).toLowerCase()){
			case 't':
				ImgVAlign='TOP';
				break;
			case 'b':
				ImgVAlign='BOTTOM';
				break;
			default:
				ImgVAlign='MIDDLE';
				break;
			}
	
	var ImgWidth=Menu[Nome].Common.ImgWidth[Indice];
	var ImgHeight=Menu[Nome].Common.ImgHeight[Indice];

	Cnt+=('<DIV ID="'+Nome+'_Item_'+Indice+'" STYLE="position:absolute;top:'+Top+'px;left:'+Left+'px;width:'+Width+'px;height:'+Height+'px;'+(Menu[Nome].Out.Bk[Indice]!=undefined?'background:'+Menu[Nome].Out.Bk[Indice]:'')+';visibility:inherit;cursor:default;z-index:1;">');
	Cnt+=('<TABLE WIDTH="'+Width+'" HEIGHT="'+Height+'" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
	Cnt+=('<TR>');
	if(!Menu[Nome].Out.Img[Indice]||Menu[Nome].Out.Img[Indice]==''||(!ImgWidth&&!ImgHeight)||(ImgWidth==0&&ImgHeight==0)){
		Cnt+=('<TD WIDTH="'+Width+'" HEIGHT="'+Height+'" VALIGN="'+VAlign+'" ALIGN="'+Align+'" NOWRAP><DIV ID="'+Nome+'_Item_'+Indice+'_Text" CLASS="'+Menu[Nome].Common.TxtClass[Indice]+'" STYLE="position:relative;top:0px;left:0px;width:100%;background:transparent;visibility:inherit;cursor:default;z-index:0;color:'+Menu[Nome].Out.Fr[Indice]+';text-align:'+Align.toLowerCase()+';">'+Menu[Nome].Items.Text[Indice]+'</DIV></TD>');
		}
	else{
		preload(Menu[Nome].Out.Img[Indice],Menu[Nome].Over.Img[Indice]);
		if(ImgAlign=='LEFT'){
			Cnt+=('<TD WIDTH="'+ImgWidth+'" HEIGHT="'+Height+'" VALIGN="'+ImgVAlign+'" ALIGN="CENTER" NOWRAP><IMG ID="'+Nome+'_Item_'+Indice+'_Image" BORDER="0" ALIGN="ABSMIDDLE" WIDTH="'+ImgWidth+'" HEIGHT="'+ImgHeight+'" SRC="'+Menu[Nome].Out.Img[Indice]+'"></TD>');
			Cnt+=('<TD WIDTH="'+(Width-ImgWidth)+'" HEIGHT="'+Height+'" VALIGN="'+VAlign+'" ALIGN="'+Align+'" NOWRAP><DIV ID="'+Nome+'_Item_'+Indice+'_Text" CLASS="'+Menu[Nome].Common.TxtClass[Indice]+'" STYLE="position:relative;top:0px;left:0px;width:100%;background:transparent;visibility:inherit;cursor:default;z-index:0;color:'+Menu[Nome].Out.Fr[Indice]+';text-align:'+Align.toLowerCase()+';">'+Menu[Nome].Items.Text[Indice]+'</DIV></TD>');
			}
		if(ImgAlign=='RIGHT'){
			Cnt+=('<TD WIDTH="'+(Width-ImgWidth)+'" HEIGHT="'+Height+'" VALIGN="'+VAlign+'" ALIGN="'+Align+'" NOWRAP><DIV ID="'+Nome+'_Item_'+Indice+'_Text" CLASS="'+Menu[Nome].Common.TxtClass[Indice]+'" STYLE="position:relative;top:0px;left:0px;width:100%;background:transparent;visibility:inherit;cursor:default;z-index:0;color:'+Menu[Nome].Out.Fr[Indice]+';text-align:'+Align.toLowerCase()+';">'+Menu[Nome].Items.Text[Indice]+'</DIV></TD>');
			Cnt+=('<TD WIDTH="'+ImgWidth+'" HEIGHT="'+Height+'" VALIGN="'+ImgVAlign+'" ALIGN="CENTER" NOWRAP><IMG ID="'+Nome+'_Item_'+Indice+'_Image" BORDER="0" ALIGN="ABSMIDDLE" WIDTH="'+ImgWidth+'" HEIGHT="'+ImgHeight+'" SRC="'+Menu[Nome].Out.Img[Indice]+'"></TD>');
			}
		}
	Cnt+=('</TR></TABLE></DIV>');
	Cnt+=('<DIV ID="'+Nome+'_Item_'+Indice+'_Events" STYLE="position:absolute;top:'+Top+'px;left:'+Left+'px;width:'+Width+'px;height:'+Height+'px;background:transparent;visibility:inherit;cursor:default;z-index:2;" onmouseover="ItemOver(\''+Nome+'\','+Indice+');"'+((Menu[Nome].Items.Click.URL[Indice]&&typeof(Menu[Nome].Items.Click.URL[Indice])!='undefined')?(' onclick="ItemClick(\''+Nome+'\','+Indice+');"'):'')+'>');
	Cnt+=('<TABLE WIDTH="'+Width+'" HEIGHT="'+Height+'" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
	if(document.getElementById)
		Cnt+=('<TR><TD NOWRAP><SPACER TYPE="BLOCK" WIDTH="'+Width+'" HEIGHT="'+Height+'"></TD></TR></TABLE></DIV>');
	else if(document.all)
		Cnt+=('<TR><TD NOWRAP>'+((Menu[Nome].Items.Click.URL[Indice]&&typeof(Menu[Nome].Items.Click.URL[Indice])!='undefined')?'<A ID="'+Nome+'_Item_'+Indice+'_Link" HREF="'+Menu[Nome].Items.Click.URL[Indice]+'" TARGET="'+(Menu[Nome].Items.Click.Dest[Indice]&&Menu[Nome].Items.Click.Dest[Indice]!=null&&Menu[Nome].Items.Click.Dest[Indice]!=''?Menu[Nome].Items.Click.Dest[Indice]:'_top')+'" STYLE="text-decoration:none;cursor:default;"><SPACER TYPE="BLOCK" WIDTH="'+Width+'" HEIGHT="'+Height+'"></A>':'')+'</TD></TR></TABLE></DIV>');

	if(Menu[Nome].Property.Type.toLowerCase()=='main'&&document.all&&document.getElementById&&navigator.userAgent.indexOf("Opera")==-1)
    	document.all(Nome).innerHTML+=Cnt;
    else
		document.write(Cnt);
	if(Indice==0){
		gO(Nome).onmouseover=new Function('DisableTimeOut(\''+Nome+'\');');
		gO(Nome).onmouseout=new Function('EnableTimeOut(\''+Nome+'\');');
		}
	}


function preload(){
	var argv=arguments;
	var argc=arguments.length;
	var x,j;
	if(!window.myimages)window.myimages=new Array();
	for (x=0; x<argc; x++){
		if(argv[x]!=null&&argv[x]!=''&&argv[x]){
			var loading=true;
			for(j=0;j<window.myimages.length;j++)
				if(window.myimages[j].src==argv[x])loading=false;
			if(loading){
				window.myimages[x] = new Image();
				window.myimages[x].src = argv[x];
				}
			}
		}
	}

function cth(N){
	if(Menu[N])
		if(Menu[N].Property.hide){
		Menu[N].Property.hide = false;
		clearTimeout(Menu[N].Property.dthide);
		}

	}

function sth(N,A,T){
	if(Menu[N])
	if(!Menu[N].Property.hide&&T>=0){
		Menu[N].Property.dthide = setTimeout(A,T);
		Menu[N].Property.hide = true;
		}
}

function cts(N){
	if(Menu[N])
	if(Menu[N].Property.show){
		Menu[N].Property.show = false;
		clearTimeout(Menu[N].Property.dtshow);
		}
	}

function sts(N,A,T){
	if(Menu[N])
		if(!Menu[N].Property.show&&T>=0){
		Menu[N].Property.dtshow = setTimeout(A,T);
		Menu[N].Property.show = true;
		}
	}

function ItemOver(N,I){
	var s,mch,SM,RX,RY;
	if(N!=null&&I!=null){
		if(Menu[N]){
			if(Menu[N].Items.Click.URL[I]&&typeof(Menu[N].Items.Click.URL[I])!='undefined')window.status=Menu[N].Items.Click.URL[I];
			if(Menu[N].Property.HiItem!=null&&!isNaN(Menu[N].Property.HiItem)&&Menu[N].Property.HiItem!=I){
				SetItem(N,Menu[N].Property.HiItem,false);
				if(Menu[N].Items.Menu.Name[Menu[N].Property.HiItem]){
					cts(Menu[N].Items.Menu.Name[Menu[N].Property.HiItem]);
					if(Menu[Menu[N].Items.Menu.Name[Menu[N].Property.HiItem]])if(Menu[Menu[N].Items.Menu.Name[Menu[N].Property.HiItem]].Property.visibility){
						if(ShowIdle&&ShowIdle>=0){
							sth(Menu[N].Items.Menu.Name[Menu[N].Property.HiItem],'HideMenu(\''+Menu[N].Items.Menu.Name[Menu[N].Property.HiItem]+'\');',ShowIdle);
							}
						else{
							HideMenu(Menu[N].Items.Menu.Name[Menu[N].Property.HiItem]);
							}
						}
					}
				}
			if(Menu[N].Items.Text[I]){
				SetItem(N,I,true);
				Menu[N].Property.HiItem = I;
				SM=Menu[N].Items.Menu.Name[I];
				if(Menu[SM]){
					if(SM){cth(SM);if(!Menu[SM].Property.Type.toLowerCase()=='sub')return;}
					if(Menu[SM].Property.dtsshow||Menu[SM].Property.visibility)return;
					RX=getAbsX(N+'_Item_'+I);
					RY=getAbsY(N+'_Item_'+I);
					if(Menu[N].Items.Menu.Where[I].substr(0,1).toLowerCase()=='l')
						RX+=-getWidth(Menu[N].Items.Menu.Name[I]);
					else
						RX+=getWidth(N+'_Item_'+I);
					if(Menu[N].Items.Menu.Where[I].substr(1,1).toLowerCase()=='b')
						RY+=-getHeight(Menu[N].Items.Menu.Name[I]);
					
					RX+=Menu[N].Items.Menu.Left[I];
					RY+=Menu[N].Items.Menu.Top[I];
	
					cth(SM);
					sts(SM,'ShowMenu(\''+SM+'\',\''+RX+'\',\''+RY+'\')',ShowIdle);
					Menu[N].Property.SelItem = I;
					}
				}
			}
		}	
	}

function ShowMenu(N,X,Y){
	var a,A,srt,srwb,srw,RXB,RYB,SL,ST,MP,cnt,s;
	if(!Menu[N]||!gO(N))return;
	s=Menu[N];

	if(Menu[N].Property.visibility)return;
	if(Menu['window'][0]&&Menu[N].Property.Parent)if(Menu['window'][0]!=Menu[N].Property.Parent&&Menu[N].Property.Parent!=Menu[Menu['window'][0]].Property.Parent)Clear(Menu['window'][0]);
	cth(N);
	if(Menu['window'][0]&&Menu[N].Property.Parent!=Menu[N].Property.Parent)HideMenu(Menu['window'][0]);
	move(N,X,Y);
	setVisible(N,true);
	Menu[N].Property.visibility=true;
	if(Menu['window'][0]==null||Menu['window'][0]==Menu[N].Property.Parent)Menu['window'][0]=N;
	}

function Clear(N){
		if(N)if(Menu[N]){
			mp=N;
			while(mp){
				if(Menu[mp].Property.Type.toLowerCase()=='sub')
					HideMenu(mp);
				if(Menu[mp].Property.Parent)mp=Menu[mp].Property.Parent;else mp=null;
				}
			}
	}	

function HideMenu(N){
	var a,A,aHI,mch;
	if(N.toLowerCase()=='all'){
		if(Menu['window'][0])Clear(Menu['window'][0]);
		}
	else{
		a=Menu[N];
		if(a.Property.Type.toLowerCase()=='sub'){
			aHI=a.Property.HiItem;
			cts(N);
			if(aHI!=null&&!isNaN(aHI)){
				if(Menu[N].Items.Menu.Name[aHI]){
					cts(Menu[N].Items.Menu.Name[aHI]);
					if(Menu[Menu[N].Items.Menu.Name[aHI]].Property.visibility){
						if(ShowIdle&&ShowIdle>=0){
							sth(Menu[N].Items.Menu.Name[aHI],'HideMenu(\''+Menu[N].Items.Menu.Name[aHI]+'\');',ShowIdle);
							}
						else{
							HideMenu(Menu[N].Items.Menu.Name[aHI]);
							}
						}
					}
				SetItem(N,aHI,false);
				Menu[N].Property.HiItem=null;
				}
			}
			setVisible(N,false);
			if(Trace)
				if(Menu[N].Property.Parent){
					if(Menu[Menu[N].Property.Parent].Property.SelItem!=null&&!isNaN(Menu[Menu[N].Property.Parent].Property.SelItem)){
						if(Menu[Menu[N].Property.Parent].Items.Menu.Name[Menu[Menu[N].Property.Parent].Property.SelItem]==N)
							SetItem(Menu[N].Property.Parent,Menu[Menu[N].Property.Parent].Property.SelItem,false);
						}
					}
			if(Menu[N].Property.Parent){
				if(Menu[Menu[N].Property.Parent].Property.SelItem){
					if(Menu[Menu[N].Property.Parent].Items.Menu.Name[Menu[Menu[N].Property.Parent].Property.SelItem]==N){
						Menu[Menu[N].Property.Parent].Property.SelItem=null;
						}
					}
				}
			Menu[N].Property.visibility=false;
			Menu[N].Property.hide=false;
			Menu[N].Property.dthide=false;
			Menu[N].Property.SelItem=null;
			if(Menu[N].Property.Parent)if(Menu[Menu[N].Property.Parent].Property.visibility&&Menu[Menu[N].Property.Parent].Property.Type.toLowerCase()=='sub')Menu['window'][0]==Menu[N].Property.Parent;
			if(Menu['window'][0]==N)Menu['window'][0]=null;
		}
	}

function DisableTimeOut(N){
	var mp,mch;
	mp=N;
	if(Trace)
		if(Menu[N].Property.Parent){
			if(Menu[Menu[N].Property.Parent].Property.SelItem!=null&&!isNaN(Menu[Menu[N].Property.Parent].Property.SelItem)){
				SetItem(Menu[N].Property.Parent,Menu[Menu[N].Property.Parent].Property.SelItem,true);
				}
			}
	while(mp){
		if(Menu[mp]){
			if(Menu[mp].Property.Type.toLowerCase()=='sub'){
				cth(mp);
				}
			if(Menu[mp].Property.Parent){
				if(Menu[Menu[mp].Property.Parent])if(mp==N)for(mch=1;mch<Menu[Menu[mp].Property.Parent].Items.Menu.Name;mch++)if(Menu[Menu[mp].Property.Parent].Items.Menu.Name[mch])if(Menu[Menu[Menu[mp].Property.Parent].Items.Menu.Name[mch]].Property.visibility){cth(Menu[Menu[mp].Property.Parent].Items.Menu.Name[mch]);Menu['window'][0]=Menu[Menu[mp].Property.Parent].Items.Menu.Name[mch];}
				}
				if(Menu[mp].Property.Parent)mp=Menu[mp].Property.Parent;else mp=null;
			}
		else{
			mp=null;
			}
		}
	}
function EnableTimeOut(N){
	var a,A,aHI,mch,mchc,mchs,mp,mclr;
	if(!Menu[N])return;
	a=Menu[N];
	if(!gO(N))return;
	aHI=a.Property.HiItem;
	if(aHI!=null&&!isNaN(aHI)){
		if(Menu[N].Items.Menu.Name[aHI]){
				cts(Menu[N].Items.Menu.Name[aHI]);
				if(Menu[Menu[N].Items.Menu.Name[aHI]])if(Menu[Menu[N].Items.Menu.Name[aHI]].Property.visibility){
					cts(Menu[N].Items.Menu.Name[aHI]);
					cth(Menu[N].Items.Menu.Name[aHI]);
					sth(Menu[N].Items.Menu.Name[aHI],'HideMenu(\''+Menu[N].Items.Menu.Name[aHI]+'\');',HideIdle); 
					}
				}
		
			mchs=false;
			mchc=false;
				if(!Trace)SetItem(N,aHI,false);
		}
	mp=N;
	while(mp){
		if(Menu[mp]){
			if(Menu[mp].Property.Type.toLowerCase()=='sub'){
					if(Menu[Menu[mp].Property.Parent]){
						cts(mp);
						sth(mp,'HideMenu(\''+mp+'\');',HideIdle);
						}
				}
				if(Menu[mp].Property.Parent){mp=Menu[mp].Property.Parent;}else{mp=null;}
			}
		else{
			mp=null;
			}
		}
	window.status=defaultStatus;
	}

function ItemClick(Mn,It){
	if(document.getElementById){
		wh=Menu[Mn].Items.Click.Dest[It]&&Menu[Mn].Items.Click.Dest[It]!=null&&Menu[Mn].Items.Click.Dest[It]!=''?Menu[Mn].Items.Click.Dest[It]:'_top';
		window.open(Menu[Mn].Items.Click.URL[It],wh);
		}
	else if(document.all){
		document.all(Mn+'_Item_'+It+'_Link').click();
		}
	}

document.onclick = new Function('HideMenu(\'All\');');
if(!window.Trace)window.Trace=false;
function defMenu(Nome){
	Menu[Nome]=new Array('Items','Over','Out','Common','Property');
	Menu[Nome].Common=new Array('TxtClass','TxtAlign','ImgAlign','ImgWidth','ImgHeight');
	Menu[Nome].Out=new Array('Fr','Bk','Img');
	Menu[Nome].Over=new Array('Fr','Bk','Img');
	Menu[Nome].Common.TxtClass=new Array();
	Menu[Nome].Common.TxtAlign=new Array();
	Menu[Nome].Common.ImgAlign=new Array();
	Menu[Nome].Common.ImgWidth=new Array();
	Menu[Nome].Common.ImgHeight=new Array();
	Menu[Nome].Out.Fr=new Array();
	Menu[Nome].Out.Bk=new Array();
	Menu[Nome].Out.Img=new Array();
	Menu[Nome].Over.Fr=new Array();
	Menu[Nome].Over.Bk=new Array();
	Menu[Nome].Over.Img=new Array();
	Menu[Nome].Property=new Array('Parent','SelItem','HiItem','Type','dtshow','dthide','show','hide','visibility');
	Menu[Nome].Items=new Array('Text','Menu','Click');
	Menu[Nome].Items.Text=new Array();
	Menu[Nome].Items.Click=new Array('URL','Dest');
	Menu[Nome].Items.Menu=new Array('Top','Left','Where','Name','Name_prw');
	Menu[Nome].Items.Menu.Top=new Array();
	Menu[Nome].Items.Menu.Left=new Array();
	Menu[Nome].Items.Menu.Where=new Array();
	Menu[Nome].Items.Menu.Name=new Array();
	Menu[Nome].Items.Menu.Name_prw=new Array();
	Menu[Nome].Items.Click.URL=new Array();
	Menu[Nome].Items.Click.Dest=new Array();
	Menu[Nome].Property.Parent=null;
	Menu[Nome].Property.HiItem=null;
	Menu[Nome].Property.SelItem=null;
	}

if(document.getElementById||document.all){
window.Trace=false;
var ShowIdle=350;
var HideIdle=350;
if(typeof(Menu)=='undefined'){var Menu=new Array(String());
Menu['window']=new Array();}
defMenu('accessorapido_en');
with(Menu['accessorapido_en']){
Property.Type='Main';
Common.TxtClass[0]='polimenudint';
Common.TxtAlign[0]='LM';
Common.ImgAlign[0]='LT';
Common.ImgWidth[0]='12';
Common.ImgHeight[0]='13';
Over.Fr[0]='#FFFFFF';
Over.Bk[0]='#848484';
Over.Img[0]='/image/freccina_h.gif';
Out.Fr[0]='#666666';
Out.Bk[0]='#F5F5F5';
Out.Img[0]='/image/freccina.gif';
Items.Text[0]='&nbsp;STUDENTS';
Items.Menu.Top[0]=4;
Items.Menu.Left[0]=0;
Items.Menu.Where[0]='LT';
Items.Menu.Name[0]='studenti_en';
Common.TxtClass[1]='polimenudint';
Common.TxtAlign[1]='LM';
Common.ImgAlign[1]='LT';
Common.ImgWidth[1]='12';
Common.ImgHeight[1]='13';
Over.Fr[1]='#FFFFFF';
Over.Bk[1]='#848484';
Over.Img[1]='/image/freccina_h.gif';
Out.Fr[1]='#666666';
Out.Bk[1]='#F5F5F5';
Out.Img[1]='/image/freccina.gif';
Items.Text[1]='&nbsp;FACULTY';
Items.Menu.Top[1]=4;
Items.Menu.Left[1]=0;
Items.Menu.Where[1]='LT';
Items.Menu.Name[1]='docenti_en';
Common.TxtClass[2]='polimenudint';
Common.TxtAlign[2]='LM';
Common.ImgAlign[2]='LT';
Common.ImgWidth[2]='12';
Common.ImgHeight[2]='13';
Over.Fr[2]='#FFFFFF';
Over.Bk[2]='#848484';
Over.Img[2]='/image/freccina_h.gif';
Out.Fr[2]='#666666';
Out.Bk[2]='#F5F5F5';
Out.Img[2]='/image/freccina.gif';
Items.Text[2]='&nbsp;PERSONNEL';
Items.Menu.Top[2]=4;
Items.Menu.Left[2]=0;
Items.Menu.Where[2]='LT';
Items.Menu.Name[2]='personale_en';
Common.TxtClass[3]='polimenudint';
Common.TxtAlign[3]='LM';
Common.ImgAlign[3]='LT';
Common.ImgWidth[3]='12';
Common.ImgHeight[3]='13';
Over.Fr[3]='#FFFFFF';
Over.Bk[3]='#848484';
Over.Img[3]='/image/freccina_h.gif';
Out.Fr[3]='#666666';
Out.Bk[3]='#F5F5F5';
Out.Img[3]='/image/freccina.gif';
Items.Text[3]='&nbsp;STRUCTURES';
Items.Menu.Top[3]=4;
Items.Menu.Left[3]=0;
Items.Menu.Where[3]='LT';
Items.Menu.Name[3]='strutture_en';
}

document.write('<DIV ID="accessorapido_en" STYLE="position:relative;top:0px;left:0px;width:104px;height:64px;background:#cccccc;visibility:visible;overflow:hidden;cursor:default;z-index:0;">');
WMItem('accessorapido_en',0,0,0,104,16);
WMItem('accessorapido_en',1,0,16,104,16);
WMItem('accessorapido_en',2,0,32,104,16);
WMItem('accessorapido_en',3,0,48,104,16);
document.write('</DIV>');

}
else{
document.write('<TABLE WIDTH="104" HEIGHT="64" BORDER="0" CELLPADDING="0" CELLSPACING="0">');
document.write('<TR>');
document.write('<TD VALIGN="MIDDLE" ALIGN="CENTER" BGCOLOR="#646464">');
document.write('<TABLE WIDTH="104" HEIGHT="64" BORDER="0" CELLPADDING="0" CELLSPACING="0">');
document.write('<TR><TD><TABLE WIDTH="104" HEIGHT="16" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
document.write('<TR BGCOLOR="#F5F5F5">');
document.write('<TD WIDTH="12" HEIGHT="16" VALIGN="TOP" ALIGN="CENTER" NOWRAP><A HREF="/php/menu/index.php?nome=studenti_en&parent=accessorapido_en" CLASS="polimenudint"><IMG BORDER="0" ALIGN="ABSMIDDLE" WIDTH="12" HEIGHT="13" SRC="/image/freccina.gif"></A></TD><TD WIDTH="92" HEIGHT="16" VALIGN="MIDDLE" ALIGN="LEFT" NOWRAP><DIV CLASS="polimenudint" STYLE="width:92px;height:16px;background:transparent;color:#666666;text-align:left;"><A HREF="/php/menu/index.php?nome=studenti_en&parent=accessorapido_en" CLASS="polimenudint">&nbsp;STUDENTS</A></TD></TR>');
document.write('</TABLE>');
document.write('</TD></TR>');
document.write('<TR><TD><TABLE WIDTH="104" HEIGHT="16" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
document.write('<TR BGCOLOR="#F5F5F5">');
document.write('<TD WIDTH="12" HEIGHT="16" VALIGN="TOP" ALIGN="CENTER" NOWRAP><A HREF="/php/menu/index.php?nome=docenti_en&parent=accessorapido_en" CLASS="polimenudint"><IMG BORDER="0" ALIGN="ABSMIDDLE" WIDTH="12" HEIGHT="13" SRC="/image/freccina.gif"></A></TD><TD WIDTH="92" HEIGHT="16" VALIGN="MIDDLE" ALIGN="LEFT" NOWRAP><DIV CLASS="polimenudint" STYLE="width:92px;height:16px;background:transparent;color:#666666;text-align:left;"><A HREF="/php/menu/index.php?nome=docenti_en&parent=accessorapido_en" CLASS="polimenudint">&nbsp;FACULTY</A></TD></TR>');
document.write('</TABLE>');
document.write('</TD></TR>');
document.write('<TR><TD><TABLE WIDTH="104" HEIGHT="16" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
document.write('<TR BGCOLOR="#F5F5F5">');
document.write('<TD WIDTH="12" HEIGHT="16" VALIGN="TOP" ALIGN="CENTER" NOWRAP><A HREF="/php/menu/index.php?nome=personale_en&parent=accessorapido_en" CLASS="polimenudint"><IMG BORDER="0" ALIGN="ABSMIDDLE" WIDTH="12" HEIGHT="13" SRC="/image/freccina.gif"></A></TD><TD WIDTH="92" HEIGHT="16" VALIGN="MIDDLE" ALIGN="LEFT" NOWRAP><DIV CLASS="polimenudint" STYLE="width:92px;height:16px;background:transparent;color:#666666;text-align:left;"><A HREF="/php/menu/index.php?nome=personale_en&parent=accessorapido_en" CLASS="polimenudint">&nbsp;PERSONNEL</A></TD></TR>');
document.write('</TABLE>');
document.write('</TD></TR>');
document.write('<TR><TD><TABLE WIDTH="104" HEIGHT="16" CELLSPACING="0" CELLPADDING="0" BORDER="0">');
document.write('<TR BGCOLOR="#F5F5F5">');
document.write('<TD WIDTH="12" HEIGHT="16" VALIGN="TOP" ALIGN="CENTER" NOWRAP><A HREF="/php/menu/index.php?nome=strutture_en&parent=accessorapido_en" CLASS="polimenudint"><IMG BORDER="0" ALIGN="ABSMIDDLE" WIDTH="12" HEIGHT="13" SRC="/image/freccina.gif"></A></TD><TD WIDTH="92" HEIGHT="16" VALIGN="MIDDLE" ALIGN="LEFT" NOWRAP><DIV CLASS="polimenudint" STYLE="width:92px;height:16px;background:transparent;color:#666666;text-align:left;"><A HREF="/php/menu/index.php?nome=strutture_en&parent=accessorapido_en" CLASS="polimenudint">&nbsp;STRUCTURES</A></TD></TR>');
document.write('</TABLE>');
document.write('</TD></TR>');
document.write('</TABLE>');
document.write('</TD></TR></TABLE>');
};

if (document.all && !window.opera){ //Crude test for IE
//Define a "blank" external JavaScript tag
  document.write('<scr'+'ipt type="text/javascript" id="contentloadtag" defer="defer" src=""><\/scr'+'ipt>');
  var contentloadtag=document.getElementById("contentloadtag");
  contentloadtag.onreadystatechange=function(){
    if (this.readyState=="complete"){
      move('accessorapido_en',0,1);
      move('accessorapido_en',0,0);
	}
  }
}

