//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("sghome", "millbridge gardens home", "millbridge gardens home",  "mill_main.html", null);
	menu.addItem("fres", "future residents", "future residents",  null, null);
	menu.addItem("cres", "current residents", "current residents",  null, null);
	menu.addItem("careers", "&nbsp;careers", "careers",  "careers.html", null);
        menu.addItem("sdkhome", "sdk apartments home", "sdk apartments home",  "../../../home.html", null);
        

	menu.addSubItem("fres", "Contact Us", "Contact Us",  "mill_future.html?sel=0", "");
	menu.addSubItem("fres", "Resident Application", "Resident Application",  "mill_future.html?sel=1", "");
	menu.addSubItem("fres", "Lease Agreement", "Lease Agreement",  "mill_future.html?sel=1", "");
	menu.addSubItem("fres", "Move-in Information", "Move-in Information",  "mill_future.html?sel=1", "");
	
	menu.addSubItem("cres", "Contact Us", "Contact Us",  "mill_current.html?sel=0", "");
	menu.addSubItem("cres", "Maintenance Request", "Maintenance Request",  "mill_current.html?sel=1", "");
	menu.addSubItem("cres", "Our Resident Commitment", "Our Resident Commitment",  "mill_current.html?sel=2", "");
	menu.addSubItem("cres", "Refer a friend", "Refer a friend",  "mill_current.html?sel=3", "");


	menu.showMenu();
}