// Drop Down Javascript
function show(showdrop){
	document.getElementById(showdrop).style.visibility="visible";
	//document.getElementById(current).className = "visitd";
	}

function hide(hidedrop){
	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';
	} */

