// ADDITIONAL ACTION(S) FOR THE MENU
// just create function(s) and call it with the object 'additional_in' and 'additional_out'
// function(s) will be executed when mouse enters the menu zone and when it leaves it
var hidden_allowed=0;
var current_state='';
function hide_dropdownlists(x) {
	check='';
	if (hidden_allowed>1) {
		if ((x==1)&&(current_state!='hidden')) {
			document.getElementById('dropdown_lists').style.visibility='hidden';
			document.getElementById('glove_list').style.visibility='hidden';
			check='hidden';		
		}
	}
	if ((x==0)&&(current_state!='visible')) {
			document.getElementById('dropdown_lists').style.visibility='visible';
			check='visible';	
	}
	if (check!='') {
		current_state=check;
	}
}
function allow_hddl() {
	if (hidden_allowed<2) {hidden_allowed+=1;}
}
// DECLARATION HAS TO BE IN EVERY PAGES, THUS this[0]=''
//function additional_in() { this[1]=stop_waiting(); this[20]=hide_dropdownlists(1); }
//function additional_out() { this[20]=hide_dropdownlists(0); }
//function additional_body() { this[20]=allow_hddl(0); }