        var  menuArr;
        var  titles;

        Initialize(4,5);

        titles[0][0] = "About Us";
        titles[0][1] = 4;

        titles[1][0] = "Our Products";
        titles[1][1] = 5;

        titles[2][0] = "Subscription";
        titles[2][1] = 3;

        titles[3][0] = "FAQ";
        titles[3][1] = 2;



        menuArr[0][0][0]="&nbsp;Company";
        menuArr[0][0][1]="window.open(\\\'/public/Company.htm\\\',target=\\\'_self\\\');"

        menuArr[0][1][0]="&nbsp;Clients";
        menuArr[0][1][1]="window.open(\\\'/public/Clients.htm\\\',target=\\\'_self\\\');"

        menuArr[0][2][0]="&nbsp;Our Team"
        menuArr[0][2][1]="window.open(\\\'/public/OurTeam.htm\\\',target=\\\'_self\\\');"

        menuArr[0][3][0]="&nbsp;Contact Us"
        menuArr[0][3][1]="window.open(\\\'/public/ContactUs.htm\\\',target=\\\'_self\\\');"


 
        menuArr[1][0][0]="&nbsp;About the Data";
        menuArr[1][0][1]="window.open(\\\'/public/AboutTheData.htm\\\',target=\\\'_self\\\');"

        menuArr[1][1][0]="&nbsp;Daily Dealings";
        menuArr[1][1][1]="window.open(\\\'/public/DailyDealings.htm\\\',target=\\\'_self\\\');"

        menuArr[1][2][0]="&nbsp;Company Snapshot";
        menuArr[1][2][1]="window.open(\\\'/public/CompanySnapshot.htm\\\',target=\\\'_self\\\');"

        menuArr[1][3][0]="&nbsp;Summary Reports";
        menuArr[1][3][1]="window.open(\\\'/public/SummaryReports.htm\\\',target=\\\'_self\\\');"

        menuArr[1][4][0]="&nbsp;Other Reports";
        menuArr[1][4][1]="window.open(\\\'/public/OtherReports.htm\\\',target=\\\'_self\\\');"


        menuArr[2][0][0]="&nbsp;Prices";
        menuArr[2][0][1]="window.open(\\\'/public/Prices.htm\\\',target=\\\'_self\\\');"

        menuArr[2][1][0]="&nbsp;Request Trial";
        menuArr[2][1][1]="window.open(\\\'/publicRequestTrial.aspx\\\',target=\\\'_self\\\');"

        menuArr[2][2][0]="&nbsp;Terms & Conditions";
        menuArr[2][2][1]="window.open(\\\'/public/Terms.htm\\\',target=\\\'_self\\\');"
        
        menuArr[3][0][0]="&nbsp;Does It Work?";
        menuArr[3][0][1]="window.open(\\\'/public/DoesItWork.htm\\\',target=\\\'_self\\\');"

        menuArr[3][1][0]="&nbsp;General FAQ";
        menuArr[3][1][1]="window.open(\\\'/public/FAQs.htm\\\',target=\\\'_self\\\');"

    xpos=85;
    ypos=72;
   // CreateMenu(rowid,x,         y,     width,height,hColor,  dColor,   bColor,   numItems,    alignment,bordersize)
	CreateMenu(0,    xpos     ,ypos,   85,  19,   '#336699','','#99B2CC',titles[0][1],'left', 0);
	CreateMenu(1,    85+xpos  ,ypos,   138,  19,   '#336699','','#99B2CC',titles[1][1],'left', 0);
	CreateMenu(2,    85+138+xpos ,ypos,135,  19,   '#336699','','#99B2CC',titles[2][1],'left', 0);
	CreateMenu(3,    85+138+135+xpos ,ypos,103,  19,   '#336699','','#99B2CC',titles[3][1],'left', 0);