// JavaScript Document

function hide() {
		document.getElementById("dropDownMenu").style.display = "none";
	}
	
	function show() {
		document.getElementById("dropDownMenu").style.display = "block";
	}
	