/*
This file was edited by Raymond E. Kinzer, Jr., July 2004.
updates:
23 October 2004 ,RK
29 October 2004 ,RK
17 January 2005 ,RK
09 February 2005,RK
21 June 2005, RK (incorporating ASP)
*/

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.



/***************************************************************************************/
/***************************************STYLING*****************************************/

//this styles the DIV area that extends behind the menu

/*The reason we need this DIV area to enclose the menu is thus: the Menu will want to be placed
absolutely on the webpage, i.e.- given coordinates in the config.js file, it will place itself
at those coordinates and not move. However, we can place the menu absolutely in some object, but
allow that object to flow as needed on the page, which is our solution here. The object we place
the menu in is a DIV space, which just blocks out a large area across the screen. We specify the
DIV section to be a little larger than the menu in height. The Menu will not spread evenly across 
the DIV section.
*/


//SET THESE VARIABLES!!!
BACKGROUND = "#08215a";	//background color, matches the menu color, 08215a
DIVWIDTH = "100%";	//how far across the screen it extends, in px or %
DIVHEIGHT = "23px";	//height of this DIV section, in pixels, 23
TEXTALIGN = "left";

//DO NOT EDIT!!!
document.write("<STYLE type=\"text/css\">");
tag = "#menu{position:relative;width:"+DIVWIDTH+";height:"+DIVHEIGHT+";background-color:"+BACKGROUND+";text-align:"+TEXTALIGN+";}";
document.write(tag);
document.write("</STYLE>");

document.write("<DIV id='menu'>");	//begin div, which encloses the menu object
//END DO NOT EDIT
/***************************************************************************************/
/***************************************************************************************/





/***************************************************************************************/

/******************EDIT THE MENU OPTIONS IN THE FOLLOWING SECTIONS!!!*******************/

/***************************************************************************************/

//N.B.: for target, type "_top" to open in current window, and "_blank" to open in new window
//NO IMAGES!!!	NO ROLL IMAGES!!!

	//ID   //Parent ID   //Text    //Image   //RollImage  //URL  //URL TARGET

    AddMenu("1", "1", "Home", "", "", base+"default.asp", "_top");


    AddMenu("2",  "2", "Research", "", "", "", "");
    	AddMenu("201", "2", "Current", "", "", base+"research.asp", "_top");
    	AddMenu("202", "2", "Publications", "", "", base+"publications.asp", "_top");
    	AddMenu("203", "2", "Presentations", "", "", base+"presentations.asp", "_top");

    
    AddMenu("3", "3", "People", "", "", "", "");

    	AddMenu("301", "3", "Current Members", "", "", base+"members.asp", "_top");
	AddMenu("304", "3", "Scrap Book", "", "", base+"scrapbook.asp", "_top"); 
	AddMenu("305", "3", "Past PhD's", "", "", base+"pastphds.asp", "_top"); 	
   

    AddMenu("4", "4", "Events", "", "", base+"events.asp", "_top");


    AddMenu("5", "5", "Contacts", "", "", base+"contacts.asp", "_top");
   	 AddMenu("501", "5", "Directions to Lab", "", "", base+"map.asp", "_top");

    AddMenu("6", "6", "Grad Program", "", "", "", "");
    	AddMenu("601", "6", "Physics Program", "", "", "http://www.sci-and-engr.tcu.edu/GradPHYS.html", "_blank");
    	AddMenu("602", "6", "Graduate Bulletin", "", "", "http://catalog.tcu.edu/graduate/page.asp?page=1_8_134", "_blank"); 
	AddMenu("603", "6", "Contact Info", "", "", base+"contacts.asp", "_top"); 	
	AddMenu("604", "6", "TCU Physics", "", "", "http://www.phys.tcu.edu", "_blank"); 

    AddMenu("7", "7", "Links", "", "", "", "");
    	AddMenu("701", "7", "Molecular Physics", "", "", base+"molecular-links.asp", "_top"); 
	AddMenu("702", "7", "TCU Links", "", "", base+"tculinks.asp", "_top");
	AddMenu("703", "7", "Sharepoint LogOn", "", "", "https://myshare.tcu.edu/molecular/default.aspx", "_top");


	Build();  

/***************************************************************************************/

document.write("</DIV>");		//ends div, DO NOT REMOVE!

//document.write("<BR>")