// JavaScript Document
function drop_down(id){
	document.getElementById(id).style.display='block';
}
function close_menu(id){
	document.getElementById(id).style.display='none';
}