// JavaScript Document

function show(what) {

if (document.getElementById(what).style.display=="none")
	{
		if (what=="articles")
			{
				document.getElementById("box").src="opened_box.jpg";
			}//end if	

		if (what=="members")
			{ 
				document.getElementById("member_box").src="opened_box.jpg";
			}//end if

	document.getElementById(what).style.display="block";
	}
else 
	{
		if (what=="articles")
			{ 
				document.getElementById("box").src="closed_box.jpg";
			}//end if

		if (what=="members")
			{ 
				document.getElementById("member_box").src="closed_box.jpg";
			}//end if

	document.getElementById(what).style.display="none";
	}
	//end if
}

function over(what) {
	document.getElementById(what).innerHTML="--";
	}
	
function out(what) {
	document.getElementById(what).innerHTML="&nbsp;&nbsp;";
}

function construction() {
	alert("This section is under Construction. Please be patient");
}