function Highlight(Object)
{
	if(!MouseOver)
	{
		Object.style.textDecoration = 'underline';
		Object.style.cursor = 'hand';
		MouseOver = true;
	}
	else
	{
		Object.style.textDecoration = 'none';
		Object.style.cursor = 'default';
		MouseOver = false;
	}
}



StatusScroll(document.title,100,'forward');
SetIndent("&nbsp;&nbsp;");

AddMenu("Archived News","mnuZero","Old News Items","oldnews.htm");
CloseMenu();

AddMenu("DHTML Scripts","mnuOne","Web Development Tools");
	AddSubMenu("Dropdown Menu","dmenu.htm");
	AddSubMenu("Expandable Table of Contents","toc.htm");
	AddSubMenu("Context Menu","context.htm");
	AddSubMenu("Shopping Cart","shopcart.htm");
	AddSubMenu("Status Bar Animator","status.htm");
CloseMenu();

AddMenu("Software","mnuSoftware","Software for the PC");
	AddSubMenu("Storm GUI Library","sdlgui.htm");
	AddSubMenu("TeslaScript Virtual Machine","tesla.htm");
	AddSubMenu("TeslaScript Plugin SDK","pluginsdk.htm");
	AddSubMenu("Plugins","plugins.htm");
	AddSubMenu("Client Sourcecode","clientsource.htm");
CloseMenu();

AddMenu("Algorithms","mnuAlgorithms","Example Algorithms");
	AddSubMenu("Bubble Sort","bubble.htm");
	AddSubMenu("Insertion Sort","insert.htm");
	AddSubMenu("Shell Sort","shell.htm");
	AddSubMenu("Quicksort","quick.htm");
CloseMenu();

AddMenu("Example Code","mnuExamples","Example code in Visual Basic, C/C++, and TeslaScript");
	AddSubMenu("The Game of Life (C++)","life.htm");
	AddSubMenu("Console Application Class (VB)","consolevb.htm");
	AddSubMenu("Registry Class (VB)","registryvb.htm");
	AddSubMenu("File Access Module (VB)","filevb.htm");
CloseMenu();

AddMenu("Articles","mnuTwo","Technical Articles and Tutorials");
	AddSubMenu("Implementing a Plugin System","plgtut.htm");
	AddSubMenu("Interfacing Visual Basic and C++","vbdllcode.htm");
	AddSubMenu("Animated Sprite File Format","imgspecs.htm");
CloseMenu();

AddMenu("TeslaScript Tutorials","mnuThree","Articles related to TeslaScript development");
	AddSubMenu("Standard I/O","tstut1.htm");
	AddSubMenu("Data Manipulation","tstut2.htm");
	AddSubMenu("Program Flow and Control","tstut3.htm");
	AddSubMenu("Procedures and Functions","tstut4.htm");
	AddSubMenu("Pointers","tstut5.htm");
CloseMenu();

AddMenu("TeslaScript Code","mnuFour","Scripts designed to run under the TeslaScript virtual machine.");
	AddSubMenu("Target Shoot","target.htm");
CloseMenu();

AddMenu("Essays","mnuFive","Various Essays Covering Technology Issues");
	AddSubMenu("Videogame Violence","violence.htm");
CloseMenu();

AddMenu("Links","mnuSix","Links to information on the Internet");
	AddSubMenu("Websites","weblinks.htm");
	AddSubMenu("Newsgroups","usenet.htm");
	AddSubMenu("IRC Channels","irclist.htm");
CloseMenu();

AddMenu("Books","mnuSeven","Suggested Reading","books.htm");
CloseMenu();

AddMenu("Site Info","mnuEight","Information about the Site and the Author");
	AddSubMenu("Personal Blog","http://skap.blogspot.com");
	AddSubMenu("Copyright and Software License","copy.htm");
	AddSubMenu("About the Author","author.htm");
	AddSubMenu("Resume","resume.doc");
CloseMenu();