// JavaScript Document
function showDropDown(menuTitle){
	document.getElementById(menuTitle).className = 'showDropDown';
}

function hideDropDown(menuTitle){
	document.getElementById(menuTitle).className = 'hideDropDown';
}