// Drop Down Javascript
function show(showdrop, current){
	document.getElementById(showdrop).style.visibility="visible";
	document.getElementById(current).className = "active";
	}

function hide(hidedrop, current){
	document.getElementById(hidedrop).style.visibility="hidden"
	document.getElementById(current).className = "";
	}


