// JavaScript Document

var products  = new MenuList();
    products.APPEND("Amcom Online","amcomOnline.cfm?siteOn=Products");
	products.APPEND("Store Manager","storeManager.cfm?siteOn=Products");
	products.APPEND("Accounting Manager","accountingManager.cfm?siteOn=Products");
	products.APPEND("Profit Manager","profitManager.cfm?siteOn=Products");
	products.APPEND("Price Manager","priceManager.cfm?siteOn=Products");
	products.APPEND("Office Manager","officeManager.cfm?siteOn=Products");
    // products.APPEND("My Resume"           ,"@MNUresume"); -- example on how to make another menu pop out 
    


    var MNUresume   = new MenuList()
    MNUresume.APPEND("OnLine HTML version","http://www.drclue.net/F1.cgi/HTML/RESUME/RESUME.html");
    MNUresume.APPEND("Word Format Resume","http://www.drclue.net/HTML/RESUME/drclueresume.doc");
    MNUresume.APPEND("Text Format Resume","http://www.drclue.net/HTML/RESUME/drclueresume.txt");

    var MNUfolders  = new MenuList();
    MNUfolders.APPEND("Dr. Clue's web-site" ,"http://www.drclue.net");
    MNUfolders.APPEND("Ryans Folder"        ,"javascript:alert('hi');");
    MNUfolders.APPEND("NEC Research"        ,"@MNUnec");

    var MNUtech     = new MenuList();
    MNUtech.APPEND("Databases"              ,"");
    MNUtech.APPEND("Desktop Computing"      ,"");
    MNUtech.APPEND("E-Commerce"             ,"");
    MNUtech.APPEND("Enterprise Apps"        ,"");
    MNUtech.APPEND("Internet/Intranet"      ,"");
    MNUtech.APPEND("Mobile Computing"       ,"");
    MNUtech.APPEND("Networking"             ,"");
    MNUtech.APPEND("Storage"                ,"");


    var MNUnec      = new MenuList();
    MNUnec.APPEND("Review: Two unique color printers","");
    MNUnec.APPEND("What's wrong with MS-Exchange"   ,"");
    MNUnec.APPEND("TestDrive: Internet Explorer 5.0","");
    MNUnec.APPEND("Netscape Preps Metadirectory"    ,"");
    MNUnec.APPEND("No Laptop Lite Enough"           ,"");
    MNUnec.APPEND("The Last artical in this menu"   ,"");

