<!--

//    window.pagers = new Menu("pagers");
//    pagers.menuItemBgColor = "black";
//    pagers.fontColor = "blue";
//    pagers.addMenuItem("Numeric Paging" , "location='numeric.html'");
 function onLoad() {
    window.phones = new Menu("mobile Phones");
    	phones.menuItemBgColor = "black";
    	phones.fontColor = "blue";
   	phones.addMenuItem("Sell your old cellphone!" , "location='sellphone.html'");
    	phones.addMenuItem("Compare Wireless Carriers" , "location='phones.html'");
    	phones.addMenuItem("Wireless Prepaid Cards" , "location='prepaid.html'");
    	phones.addMenuItem("Omni Prepaid" , "location='omni.html'");
   	phones.addMenuItem("Liberty Wireless" , "location='liberty.html'");
   	phones.addMenuItem("Cricket Wireless" , "location='cricket.html'");

    window.internet = new Menu("internet access");
	internet.menuItemBgColor = "black";
      internet.fontColor = "blue";
//	internet.addMenuItem("DSL Broadband" , "location='dsl.html'");
	internet.addMenuItem("Dial-Up Service" , "location='http://www.eisisp.com'");
	
    internet.disableDrag = true;
    phones.disableDrag = true;
    phones.writeMenus();
}
//-->