/* Script for JavaScript Drop Down Menus */
function ftShowDDMenu(elmnt) {
	document.getElementById(elmnt + "DropDown").style.visibility="visible";
}

function ftHideDDMenu(elmnt) {
	document.getElementById(elmnt + "DropDown").style.visibility="hidden";
}

function ftChangeDDHeading(elmnt, heading) {
	document.getElementById(elmnt + "DropDownTitle").innerHTML = heading;
	ftHideDDMenu(elmnt);
}

