﻿// Trying to load things on the same page with CSS and DOM... since my projects are so small
// they don't warrant their own pages, really.
// Michael Shin - Oct-17-2008

function openModule (module){
	var tP = document.getElementById(module).style;
	var tL = document.getElementById(module+"Link").style;
	
	if(tP.height=="500px"){
		tP.height="0px";
		tP.display="none";
		tL.color="black";
		tL.background="white";
	} else {
		tP.height="500px";
		tP.width="330px";
		tP.display="inline";
		tP.overflow="hidden";
		tP.padding="0";
		tL.color="white";
		tL.background="black";
	}

}

