//Aquest Menú obre les opcions reduint l'area de la capa que tapa.

var MenuEstat = new Array(5); // Si MenuEstat[0] = 1 --> Moviment Actiu; Si = 0 --> Moviment Inactiu
//Inicialitzem array a 0.
for(i=0;i<MenuEstat.length;i++){
	MenuEstat[i] = 0;
}
var MenuPosicio = new Array(5); // Si MenuPosicio[0] = 1 --> Obert; Si = 0 --> Tancat
//Inicialitzem array a 0.
for(i=0;i<MenuPosicio.length;i++){
	MenuPosicio[i] = 0;
}
var yposmax = new Array(5);yposmax[0] = 130;
yposmax[1] = 130; //no el fem servir
yposmax[2] = 130;
yposmax[3] = 130; //no el fem servir
yposmax[4] = 130;
var yposmin = new Array(5); // 6 ypos diferents depenent del contingut...yposmin[0] = 20;
yposmin[1] = 0; //no el fem servir
yposmin[2] = 50;
yposmin[3] = 0; //no el fem servir
yposmin[4] = 80;
var ypos = new Array(5); // 6 ypos, una per cada submenu.ypos[0] = 130;
ypos[1] = 130; //no el fem servir
ypos[2] = 130;
ypos[3] = 130; //no el fem servir
ypos[4] = 130;
var Idtime=0;
function OpenMenu(ID){
	var moveid="Menu"+ID+"ToMove"	ypos[ID]=ypos[ID]-10;
	if(document.layers){
		document.layers[moveid].height=ypos[ID];
	}
	if(document.all){
		document.all[moveid].style.height=ypos[ID];
	}
	if(!document.all && document.getElementById){
		document.getElementById(moveid).style.height=ypos[ID]+"px";
	}
	if (ypos[ID]<yposmin[ID]+10){		if(document.layers){
			document.layers[moveid].height=yposmin[ID];
		}
		if(document.all){
			document.all[moveid].style.height=yposmin[ID];
		}
		if(!document.all && document.getElementById){
			document.getElementById(moveid).style.height=yposmin[ID]+"px";
		}
		window.clearTimeout(Idtime);Idtime=0;		MenuEstat[ID]=0;		MenuPosicio[ID] = 1;
	}else{
		Idtime = window.setTimeout("OpenMenu('"+ID+"');",10);
	}
}
function CloseMenu(ID){
	var moveid="Menu"+ID+"ToMove"	ypos[ID]=ypos[ID]+10;
	if(document.layers){
		document.layers[moveid].height=ypos[ID];
	}
	if(document.all){
		document.all[moveid].style.height=ypos[ID];
	}
	if(!document.all && document.getElementById){
		document.getElementById(moveid).style.height=ypos[ID]+"px";
	}
	if (ypos[ID]>yposmax[ID]-10){
		if(document.layers){
			document.layers[moveid].height=yposmax[ID];
		}
		if(document.all){
			document.all[moveid].style.height=yposmax[ID];
		}
		if(!document.all && document.getElementById){
			document.getElementById(moveid).style.height=yposmax[ID]+"px";
		}		window.clearTimeout(Idtime);Idtime=0;		MenuEstat[ID]=0;		MenuPosicio[ID] = 0;
	}else{
		Idtime = window.setTimeout("CloseMenu('"+ID+"');",10);
	}
}
function EvalClick(IDnum){
	var Estat;
	//for(i=0;i<MenuEstat.length;i++) Estat|=MenuEstat[i];
	Estat = MenuEstat[IDnum];
	var Posicio = MenuPosicio[IDnum];
	if(Estat==0){
		if(Posicio==0){
			//Obrir
			MenuEstat[IDnum]=1;
			OpenMenu(IDnum);
		}else{
			//Tancar
			MenuEstat[IDnum]=1;
			CloseMenu(IDnum);
		}
	}
}
