function mmLoadMenus() {
  if (window.mm_menu_1112182711_1) return;
  window.mm_menu_1112182711_1 = new Menu("root",211,20,"Verdana, Arial, Helvetica, sans-serif",14,"#000000","#ffffff","#cccccc","#060295","left","middle",3,0,1000,0,0,true,true,true,0,true,true);
  mm_menu_1112182711_1.addMenuItem("Weddings","location='weddings.php'");
  mm_menu_1112182711_1.addMenuItem("Engagements","location='engagements.php'");
  mm_menu_1112182711_1.addMenuItem("Families","location='family.php'");
  mm_menu_1112182711_1.addMenuItem("Children","location='children.php'");
  mm_menu_1112182711_1.addMenuItem("Sports","location='sports.php'");
  mm_menu_1112182711_1.addMenuItem("Professional&nbsp;Portraits","location='pro.php'");
  mm_menu_1112182711_1.addMenuItem("Digital&nbsp;Imaging&nbsp;-&nbsp;Retouching","location='retouching.php'");
  mm_menu_1112182711_1.addMenuItem("DVD&nbsp;Transfer","location='dvd.php'");
   mm_menu_1112182711_1.hideOnMouseOut=true;
   mm_menu_1112182711_1.menuBorder=1;
   mm_menu_1112182711_1.menuLiteBgColor='#ffffff';
   mm_menu_1112182711_1.menuBorderBgColor='#555555';
   mm_menu_1112182711_1.bgColor='#555555';

  mm_menu_1112182711_1.writeMenus();
} // mmLoadMenus()

function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) 
{
	this.version = "020320 [Menu; mm_menu.js]";
	this.type = "Menu";
	this.menuWidth = mw;
	this.menuItemHeight = mh;
	this.fontSize = fs;
	this.fontWeight = "plain";
	this.fontFamily = fnt;
	this.fontColor = fclr;
	this.fontColorHilite = fhclr;
	this.bgColor = "#555555";
	this.menuBorder = 1;
	this.menuBgOpaque=opq;
	this.menuItemBorder = 1;
	this.menuItemIndent = idt;
	this.menuItemBgColor = bg;
	this.menuItemVAlign = valgn;
	this.menuItemHAlign = halgn;
	this.menuItemPadding = pad;
	this.menuItemSpacing = space;
	this.menuLiteBgColor = "#ffffff";
	this.menuBorderBgColor = "#777777";
	this.menuHiliteBgColor = bgh;
	this.menuContainerBgColor = "#cccccc";
	this.childMenuIcon = "arrows.gif";
	this.submenuXOffset = sx;
	this.submenuYOffset = sy;
	this.submenuRelativeToItem = srel;
	this.vertical = vert;
	this.items = new Array();
	this.actions = new Array();
	this.childMenus = new Array();
	this.hideOnMouseOut = true;
	this.hideTimeout = to;
	this.addMenuItem = addMenuItem;
	this.writeMenus = writeMenus;
	this.MM_showMenu = MM_showMenu;
	this.onMenuItemOver = onMenuItemOver;
	this.onMenuItemAction = onMenuItemAction;
	this.hideMenu = hideMenu;
	this.hideChildMenu = hideChildMenu;
	if (!window.menus) window.menus = new Array();
	this.label = " " + label;
	window.menus[this.label] = this;
	window.menus[window.menus.length] = this;
	if (!window.activeMenus) window.activeMenus = new Array();

}