// toggles the menu
	showedArr = {};
	function showSubmenu(id) {
		// disable others
		$(".sublist").hide();
		$.each(showedArr,function(i,val) {
			if(i != id) {
				showedArr[i] = false;				
			}
		});

		if(showedArr[id] == true) {
			// showed now, disable that
			showedArr[id] = false;
		} else {
			showedArr[id] = true;
			// show menu
			$('#submenu'+id).toggle('slow');
			$('.menu').each(function() {
//				$(this).css('position','static');
			});
		}
	}