// 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 = "";
	}

// News Panel Show Hide Javascript
function shown(a, b){
	 document.getElementById(a).style.display='block';
	 document.getElementById(b).style.display='none';
	} 
