	// TL means top list, SL means sub list		function showLinks(obj)  {		var TL0 = document.getElementById("Projects");		var TL1 = document.getElementById("Ideas");		var TL2 = document.getElementById("Background");		var SL0 = document.getElementById("subProjects");		var SL1 = document.getElementById("subIdeas");		var SL2 = document.getElementById("subBackground");		var CI = document.getElementById("ContactInfo");						TL0.className = "linkList";		TL1.className = "linkList";		TL2.className = "linkList";		SL0.className = "linkList";		SL1.className = "linkList";		SL2.className = "linkList";		CI.classname = "contact";				                if (obj == "proj")            {	                TL0.className = "Selected";					TL1.className = "Fade";					TL2.className = "Fade";					SL0.className = "ListSelected"; 					SL1.className = "ListFade";					SL2.className = "ListFade";				}                if (obj == "idea")				{					TL0.className = "Fade";					TL1.className = "Selected";					TL2.className = "Fade";					SL0.className = "ListFade";     					SL1.className = "ListSelected"; 					SL2.className = "ListFade";				}                if (obj == "back")            {					TL0.className = "Fade";					TL1.className = "Fade";					TL2.className = "Selected";					SL0.className = "ListFade";					SL1.className = "ListFade";					SL2.className = "ListSelected";				}				if (obj == "contacts")        {					//SL0.className = "linkList";					//SL1.className = "linkList";					//SL2.className = "linkList";					CI.className = "contacted";				}	}			// TL means top list, SL means sub list		function showList(obj)  {				document.getElementById("b1997").className = "yearList";		document.getElementById("b1998").className = "yearList";		document.getElementById("b1999").className = "yearList";		document.getElementById("b2000").className = "yearList";		document.getElementById("b2001").className = "yearList";		document.getElementById("b2002").className = "yearList";		document.getElementById("b2003").className = "yearList";		document.getElementById("b2004").className = "yearList";		document.getElementById("b2005").className = "yearList";		document.getElementById("b2006").className = "yearList";			var thisYear = document.getElementById(obj);		var CI = document.getElementById("ContactInfo");				thisYear.className = "Selected";		CI.className = "contact";							}		function ticYear(obj)  {				document.getElementById("a1997").className = "lastYear";		document.getElementById("a1998").className = "lastYear";		document.getElementById("a1999").className = "lastYear";		document.getElementById("a2000").className = "lastYear";		document.getElementById("a2001").className = "lastYear";		document.getElementById("a2002").className = "lastYear";		document.getElementById("a2003").className = "lastYear";		document.getElementById("a2004").className = "lastYear";		document.getElementById("a2005").className = "lastYear";		document.getElementById("a2006").className = "lastYear";			var seeYear= document.getElementById(obj);		var CI = document.getElementById("ContactInfo");				seeYear.className = "Selected";		CI.className = "contact";							}		function contact(obj)  {		// var hideElement= document.getElementById(obj);		var CI = document.getElementById("ContactInfo");		var PI = document.getElementById("ProjectInfo");		var cLink = document.getElementById("contact");		var Back = document.getElementById("back");		 if (obj == "contact") {			CI.className =  "contacted";			cLink.className =  "hideme";			Back.className = "goBack";		} 		if (obj == "back") {			cLink.className =  "contactLink";			CI.className = "hideme";			Back.className = "hideme";			PI.className = "hideme";		} 		}				function OLDcontact(obj)  {		// var hideElement= document.getElementById(obj);		var CI = document.getElementById("ContactInfo");				 if (contactStatus == "hello") {			CI.className = "contact";			var contactStatus = "goodbye";			alert(contactStatus);		} else if (contactStatus == "goodbye") {		//hideElement.className = "hideMe";		CI.className = "contacted";		var contactStatus = "hello";		alert(contactStatus);		} else { //firsttime		//hideElement.className = "hideMe";		CI.className = "contacted";		var contactStatus = "hello";		alert(contactStatus);		} 				}					function info(obj)  {		// var hideElement= document.getElementById(obj);		var PI = document.getElementById("ProjectInfo");		var cLink = document.getElementById("contact");		var Back = document.getElementById("back");		 if (obj == "project") {			PI.className =  "projected";			cLink.className =  "hideme";			Back.className = "goBack";		} 		if (obj == "back") {			cLink.className =  "contactLink";			CI.className = "hideme";			Back.className = "hideme";		} 		}