function init()
{
	//Main Menu items:
	menus[0] = new menu(35, "horizontal", menst(), 5, -2, -2, "red", "blue", "Verdana,Helvetica", 9, 
		"bold", "bold", "black", "white", 1, "gray", 2, "rollover:tridown.gif:tridown.gif", false, true, true, true, 12, true, 4, 4, "black");
	menus[0].addItem("index.htm", "", 100, "center", "Home", 0);
	menus[0].addItem("#", "", 100, "center", "Categories", 1);
	menus[0].addItem("http://store.gscim.com", "", 100, "center", "Store", 0);
	menus[0].addItem("news_letter.html", "", 100, "center", "News Letter", 0);
	menus[0].addItem("Contact.html", "", 100, "center", "Contact", 0);
	menus[0].addItem("#", "", 100, "center", "About", 2);
        

//Sub Menu for 2nd Main Menu Item ("web building"):
	menus[1] = new menu(140, "vertical", 0, 0, -5, -5, "red", "blue", "Verdana,Helvetica", 9, "bold", 
		"bold", "black", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("Arch/Archeology.html", "", 22, "left", "Archeology", 0);
	menus[1].addItem("astro/Astronomy.html", "", 22, "left", "Astronomy", 0);
	menus[1].addItem("Bible/The_Bible.html", "", 22, "left", "The Bible", 0);
	menus[1].addItem("bio/Biology.html", "", 22, "left", "Biology", 0);
	menus[1].addItem("chem/Chemistry.html", "", 22, "left", "Chemistry", 0);
	menus[1].addItem("cosmo/Cosmology.html", "", 22, "left", "Cosmology", 0);
	menus[1].addItem("geo/Geology.html", "", 22, "left", "Geology", 0);
	menus[1].addItem("history/history.html", "", 22, "left", "History", 0);
	menus[1].addItem("info/Information_Theory.html", "", 22, "left", "Information", 0);
	menus[1].addItem("Pale/Paleontology.html", "", 22, "left", "Paleontology", 0);
	menus[1].addItem("phy/physics.html", "", 22, "left", "Physics", 0);
	menus[1].addItem("Sci/science.html", "", 22, "left", "Science", 0);
	

	menus[2] = new menu(258, "vertical", 0, 0, -5, -5, "red", "blue", "Verdana,Helvetica", 9, "bold", 
		"bold", "black", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("about.htm", "", 22, "left", "About Genesis Science Mission", 0);
	menus[2].addItem("cpcjr.htm", "", 22, "left", "Meet Charles Creager Jr.", 0);
	menus[2].addItem("donate.htm", "", 22, "left", "Donate", 0);

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.

// Browser Window Size and Position
// copyright Stephen Chapman, 3rd Jan 2005, 8th Dec 2005
// you may copy these functions but please keep the copyright notice as well
function pageWidth() {return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ?       document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;}


function menst() 
{ 
return ( pageWidth()/2 ) - 300;
}