function showToolbar(selected)
{
	var aboutselected = "";
	var communityselected = "";
	var libraryselected = "";
	var newsselected = "";
	var calendarselected = "";
	var homeselected = "";
	if (selected == "about") aboutselected = "b";
	if (selected == "community") communityselected = "b";
	if (selected == "library") libraryselected = "b";
	if (selected == "news") newsselected = "b";
	if (selected == "calendar") calendarselected = "b";
	if (selected == "home") homeselected = "b";

	menu = new Menu();
	menu.addItem("about","01","About Us",null,"/about/",aboutselected);
	menu.addItem("community","02","Community",null,"/community/",communityselected);
	menu.addItem("library","03","Library of Forms",null,"/library/",libraryselected);
	menu.addItem("news","04","Hot Happenings",null,"/news/",newsselected);
	menu.addItem("calendar","05","calendar",null,"/calendar/",calendarselected);
	menu.addItem("home","06","Home",null,"/",homeselected);

	menu.addSubItem("about","Learn about our really cool project.","About Us",".","#FF9999");
	menu.addSubItem("community","Discover our partners and information on kids health insurance.","Community",".","#FFCC99");
	menu.addSubItem("library","If you have the time, we have the form!","Library",".","#FFFF99");
	menu.addSubItem("news","News, events, and updates OH MY!","Hot Happenings",".","#99FF99");
	menu.addSubItem("calendar","got ideas? Join our events and share your views.","Calendar",".","#99CCFF");
	menu.addSubItem("home","Those wonderful, smiling kids make our mission rewarding!","Home",".","#CCCCFF");
	menu.showMenu();
}
