//label	The label of the menu -- defaults to "menuLabel" + index
// 	mw		Menu width in pixels
// 	mh		Menu item height in pixels
// 	fnt		Font family used in the menu -- defaults to "arial,helvetica,verdana,sans-serif"
// 	fs		Font size used in the menu -- defaults to 12 point
//	fclr	Font color -- defaults to black
//  fhclr	Font highlight color -- defaults to white
//  bg		Menu item's background color -- defaults to light gray (#cccccc)
//	bgh		Menu's background hilight color -- defaults to blue (#000084)
//
//function Menu(label, Menu width, Menu height, Font family, Font size, Font color, Font highlight color, Menu background color, Menu's background hilight color)
function fwLoadMenus()
 {
  if (window.fw_menu_0) return;
  // Program Office 
	
window.fw_menu_1 = new Menu("Showcase",140,20,"verdana, Arial, Helvetica, sans-serif",11,"#FFFFFF","#4E3CB8","#3734B3","#B0BB26");
	fw_menu_1.addMenuItem("Web Design","location='portfolio.html'");
	fw_menu_1.addMenuItem("Logos","location='portfolio_logos.html'");
	fw_menu_1.fontWeight="normal"; //font weight for bold/normal 	   
	fw_menu_1.hideOnMouseOut=true;
	fw_menu_1.writeMenus(); 
}
