/**
 * based on menu.js
 * by gary smith, July 1997
 * Copyright (c) 1997-1999 Netscape Communications Corp.
 *
 * Netscape grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */
function LoadMenus() {
  if (window.menu_0) return;
  //Solution Center Menu
  window.menu_sr = new Menu("root",100,20,"#336699");
  menu_sr.addMenuItem("For Buisness","location='/business/index.jsp'");
  menu_sr.addMenuItem("For Home","location='/home/index.jsp'"); 
  menu_sr.addMenuItem("Web Solutions","location='/web/index.jsp'");
  //Community Main
  window.menu_company = new Menu("root",100,20,"#336699");
  menu_company.addMenuItem("Testimonials","location='/company/testimonials.jsp'");
   // Initilize Services Menues
  menu_sr.hideOnMouseOut=true;
  menu_company.hideOnMouseOut=true;
  menu_sr.writeMenus();
  menu_company.writeMenus();
} 
