//Top Nav bar script v2- home.htm function showToolbar() { // AddItem(id, text, hint, location, alternativeLocation); // AddSubItem(idParent, text, hint, location); menu = new Menu(); menu.addItem("webmasterid", "Projects", "Projects", null, null); menu.addItem("newsid", "News Sites", "News Sites", null, null); menu.addItem("sponsorsid", "Sponsors", "Sponsors", null, null); menu.addItem("searchengineid", "Search Engines", "Search Engines", null, null); menu.addItem("miscid", "Links", "Links", null, null); menu.addItem("navigationid", "Navigation ", "Navigation ", null, null); menu.addSubItem("webmasterid", "Morphosys", "Morphosys", "http://www.eng.uci.edu/morphosys/"); menu.addSubItem("webmasterid", "IBMR Lab", "IBMR Lab", "http://ibmrlab.ece.uci.edu/"); menu.addSubItem("webmasterid", "Multithreaded Architecture", "Multithreaded Architecture", "http://www.eng.uci.edu/comp.arch/multithreading/index.html"); menu.addSubItem("webmasterid", "IMPACCT Project", "IMPACCT Project", "http://www.ece.uci.edu/impacct/"); menu.addSubItem("newsid", "CNN", "CNN", "http://www.cnn.com"); menu.addSubItem("newsid", "ABC News", "ABC News", "http://www.abcnews.com"); menu.addSubItem("newsid", "MSNBC", "MSNBC", "http://www.msnbc.com"); menu.addSubItem("newsid", "CBS news", "CBS News", "http://www.cbsnews.com"); menu.addSubItem("newsid", "News.com", "News.com", "http://news.com"); menu.addSubItem("newsid", "Wired News", "Wired News", "http://www.wired.com"); menu.addSubItem("newsid", "TechWeb", "TechWeb", "http://www.techweb.com"); menu.addSubItem("sponsorsid", "DARPA", "DARPA", "http://www.darpa.mil/"); menu.addSubItem("sponsorsid", "NSF", "NSF", "http://www.nsf.gov/"); menu.addSubItem("sponsorsid", "AFRL", "AFRL", "http://www.afrl.af.mil/"); menu.addSubItem("sponsorsid", "Broadcom", "Broadcom", "http://www.broadcom.com/"); menu.addSubItem("sponsorsid", "Conexant", "Conexant", "http://www.conexant.com/"); menu.addSubItem("sponsorsid", "Rockwell-Collins", "Rockwell-Collins", "http://www.rockwellcollins.com/"); menu.addSubItem("searchengineid", "Yahoo", "Yahoo", "http://www.yahoo.com/"); menu.addSubItem("searchengineid", "Google", "Google", "http://www.google.com/"); menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com"); menu.addSubItem("searchengineid", "HotBot", "HotBot", "http://www.hotbot.com"); menu.addSubItem("miscid", "ECE Department", "ECE Department", "http://www.ece.uci.edu/"); menu.addSubItem("miscid", "UCI Engineering", "UCI Engineering", "http://www.eng.uci.edu/"); menu.addSubItem("miscid", "IEEE", "IEEE", "http://www.ieee.org/portal/index.jsp"); menu.addSubItem("miscid", "Computer Architecture", "Computer Architecture", "http://www.cs.wisc.edu/~arch/www/"); menu.addSubItem("navigationid", "ACAG Home", "ACAG Home", "http://www.eng.uci.edu/comp.arch/home.htm"); menu.addSubItem("navigationid", "Nader's Home", "Nader's Home", "http://www.eng.uci.edu/comp.arch/nmain.html"); menu.addSubItem("navigationid", "Researchers", "Researchers", "http://www.eng.uci.edu/comp.arch/people.html"); menu.addSubItem("navigationid", "Pictures", "Pictures", "http://www.eng.uci.edu/comp.arch/newPhotos.htm"); menu.addSubItem("navigationid", "Hobbies", "Hobbies", "http://www.eng.uci.edu/comp.arch/hobbies.htm"); menu.addSubItem("navigationid", "Research Papers", "Research Papers", "http://www.eng.uci.edu/comp.arch/papers/"); menu.addSubItem("navigationid", "Search", "Search this site", "http://www.eng.uci.edu/comp.arch/search.htm"); menu.addSubItem("navigationid", "Guestbook", "Guestbook", "http://www.eng.uci.edu/comp.arch/guestbook/guestbook.html"); menu.showMenu(); }