////MENU
	function setMenu(){
		var mainMenu = document.getElementById ('MENU');
		if (mainMenu == null)
			return;

		var li = mainMenu.getElementsByTagName ('li');

		for (var i = 0; i < li.length; i++){
			for (var f = 0; f < li[i].childNodes.length; f++){
				li[i].onclick = manageClick;

				if (li[i].childNodes[f].tagName == 'UL' || li[i].childNodes[f].tagName == 'OL'){
					li[i].closed = true;
					if (li[i].items == null || li[i].items.length == null)
						li[i].items = new Array ();
					li[i].items.push (li[i].childNodes[f]);
					li[i].childNodes[f].style.display = 'none';
				}
			}
		}
	}

	function manageClick (e){
		if (document.all)
			e = window.event;

		e.cancelBubble = true;
		if (e.stopPropagation)
			e.stopPropagation ();

		if (this.items == null || this.items.length == null || this.items.length <= 0)
			return;

		var newDisplay = this.closed ? '' : 'none';

		for (var i = 0; i < this.items.length; i++)
			this.items[i].style.display = newDisplay;

		this.closed = !this.closed;
	}