//<!-- Add 1 for each level of menus (usually 2 or 3) at the most -->
//	linkclass, color, bgcolor, mouseOver Color, mouseOver BgColor

addLevel(1,  "mainlevel", "#000000", "#e7d5d6", "#f2f2f2", "#e31635");
addLevel(2,  "sub1", "#f2f2f2", "#e31635","#000000", "#e7d5d6" );
addLevel(3,  "sub2", "#000000", "#e7d5d6", "#f2f2f2", "#e31635" );


//------------------------------------------------------------------------------
//<!-- MENUS section-->
//<!-- Add 1 for each TABLE (menu) -->
//=============================
// menu id, level, left, top
//=============================
addMenu("main", 1, "", "");
//------------------------------------------------------------------------------
//DO NOT MODIFY ABOVE THIS LINE
//------------------------------------------------------------------------------

addMenu("major", 2, 251, 98); 
addMenu("info", 2, 251, 155); 
addMenu("organizations", 3, 512, 244); 


//------------------------------------------------------------------------------
//<!-- MENU ITEMS section -->
//<!-- Add 1 for each TABLE ROW (menu item)  -->
//===============================
// menu parentId, text, link, id
//===============================

//---------------------
//LEVEL 1:
//---------------------
addMenuItem( "main", "Home","/depts/biochem/index.html","home");
addMenuItem( "main", "Major and Courses","/depts/biochem/overview.html","major");
addMenuItem( "main", "Affiliated Faculty","/depts/biochem/affiliated.html","affiliated");
addMenuItem( "main", "Information for Students","/depts/biochem/info.html","info");


//---------------------
//LEVEL 2:
//---------------------
addMenuItem( "major", "Overview","/depts/biochem/overview.html","overview");
addMenuItem( "major", "Biochemistry","/depts/biochem/bio220/index.html","biochemistry");
addMenuItem( "major", "Experimental Biochemistry","/depts/biochem/bcm341.html","experimental");
addMenuItem( "major", "Advanced Biochemistry","/depts/biochem/bcm441.html","advanced");
addMenuItem( "info", "Research Opportunities","/depts/biochem/research.html","research");
addMenuItem( "info", "Honors Program","/depts/biochem/honors.html","honor");
addMenuItem( "info", "Careers in Biochemistry","/depts/biochem/career.html","careers");
addMenuItem( "info", "Student Profiles","/depts/biochem/profiles.html","profiles");
addMenuItem( "info", "Facilities","/depts/biochem/facilities.html","facilities");
addMenuItem( "info", "Professional Organizations","/depts/biochem/proOrgs.html","organizations");


//---------------------
//LEVEL 3:
//---------------------
addMenuItem( "organizations", "ACS","http://acswebcontent.acs.org/home.html","acs");
addMenuItem( "organizations", "ASBMB","http://www.asbmb.org/","asbmb");


