function buildMenu()
{
// addItem(id, text, hint, location);
// addSubItem(idParent, text, hint, location);

menu = new Menu();

menu.addItem("pi","Product Information","","#product_information");
menu.addSubItem("pi","Eligible Terms","","#eligible_terms");
menu.addSubItem("pi","Minimum Loan Amount","","#minimum_loan_amount");
menu.addSubItem("pi","Qualifying Information","","#qualifying_information");
menu.addSubItem("pi","Temporary Buydown","","#temporary_buydown");
menu.addSubItem("pi","Arm Info","","#arm_info");
menu.addSubItem("pi","Secondary Financing","","#secondary_financing");
menu.addSubItem("pi","Mortgage Insurance","","#mortgage_insurance");
menu.addSubItem("pi","Impound Accounts","","#impound_accounts");


menu.addItem("be","Borrower Eligibility","","#borrower_eligibility");


menu.addItem("cr","Credit","","#credit_requirements");

menu.addItem("ir","Income","","#income_requirements");


menu.addItem("ar","Assets","","#asset_requirements");


menu.addItem("tt","Transaction Type","","#transaction_type");


menu.addItem("pe","Property Eligibility","","#property_eligibility");


menu.addItem("topofpage","Top&nbsp;of&nbsp;Page","","#");

menu.showMenu();
}