/*
This file was edited by Raymond E. Kinzer, Jr., July 2004.
updates:
23 October 2004 ,RK
29 October 2004 ,MM
10 Febuary 2005 ,MM
1  April   2005 ,MM
8  Febuary 2006 ,MM
8  October 2006 ,MP
*/


function getMenu()
{

var base="";	
//'base' is the root address. We'll add it here so that adding the menu to 
//any subdirectories will not be an issue. May not necessarily be needed.

document.write("<DIV id='menu'>")	  //edit #menu style
/*DIV#MENU is needed because the menu itself wants to be absolutely positioned in something.
We place the menu in a DIV so that we can absolutely position the menu in something that
itself will float around. Don't remove the menu from this DIV!!!!!!!!!*/



//N.B.: for target, type "_top" to open in current window, and "_blank" to open in new window
//NO IMAGES!!!	NO ROLL IMAGES!!!

//Please note that a drop-down can be added to one of the "children" that appear in the dropdown.

	//ID   //Parent ID   //Text    //Image   //RollImage  //URL  //URL TARGET

    AddMenu("1", "1", "Home", "", "", base+"index.html", "_top");


    AddMenu("2", "2", "News/Events", "", "", "events.html", "_top");
    	AddMenu("2001", "2", "Current Events", "", "", "events.html", "_top");
	AddMenu("2002", "2", "Physics Olympics", "", "", "olympics.html", "_top");
		AddMenu("201", "2002", "Extra Info", "", "", "olympics/po_info.doc", "_top");
    		AddMenu("202", "2002", "Comments", "", "", "PO_comments.html", "_top");
     		AddMenu("203", "2002", "Pictures", "", "", "pics.html", "_top");
    		AddMenu("204", "2002", "Flyer", "", "", "olympics/physics olympics flyer.pdf", "_top");
			AddMenu("205", "2002", "Registration", "", "", "olympics/PO reg form.doc", "_top");
    	AddMenu("2003", "2", "Meetings", "", "", "meetings.html", "_top");
    	AddMenu("2004", "2", "Pictures", "", "", "pics.html", "_top");
//    	AddMenu("2005", "2", "StarCraft&#153", "", "", "starcraft.html", "_top");
// There is no longer a StarCraft event so the link has been removed

    AddMenu("3", "3", "About TCU-SPS", "", "", "", "_top");
    	AddMenu("3001", "3", "About Us", "", "", "aboutus.html", "_top");
	AddMenu("3002", "3", "Officers", "", "", "officers.html", "_top");     	
	AddMenu("3003", "3", "Contact Us", "", "", "contacts.html", "_top");     	


    AddMenu("4", "4", "WWW Links", "", "", "links.html", "_top"); 
	AddMenu("4001", "4", "Astronomy", "", "", "links.html#astrolinks", "_top"); 
	AddMenu("4002", "4", "Physics", "", "", "links.html#physlinks", "_top"); 
	AddMenu("4003", "4", "Jobs/Careers", "", "", "links.html#careers", "_top"); 
	AddMenu("4004", "4", "Mathematics", "", "", "links.html#math", "_top"); 
	AddMenu("4005", "4", "Humour!!!", "", "", "links.html#humor", "_top"); 
	//AddMenu("4006", "4", "Grad Schools", "", "", "links.html", "_top"); 


    AddMenu("5", "5", "Contact Us", "", "", "contacts.html", "_top");


    AddMenu("6", "6", "TCU", "", "", "http://www.tcu.edu", "_blank"); 
	AddMenu("6001", "6", "TCU Physics", "", "", "http://www.phys.tcu.edu", "_blank"); 
	AddMenu("6002", "6", "Undergrads", "", "", "http://catalog.tcu.edu/undergraduate/page.asp?page=1_8_73", "_blank"); 
	AddMenu("6003", "6", "TCU Home", "", "", "http://www.tcu.edu", "_blank"); 
	AddMenu("6004", "6", "Science/Engr", "", "", "http://www.sci-and-engr.tcu.edu/", "_blank"); 
	AddMenu("6005", "6", "Library", "", "", "http://www.lib.tcu.edu", "_blank"); 
	AddMenu("6006", "6", "Recreation", "", "", "http://www.campusrec.tcu.edu", "_blank"); 

    


	Build();  


document.write("</DIV>")

}	//end getMenu() function