function buildMenu(){
	var menuArray
	menuArray = new Array ()

	menuArray[0] = new Array ()  //injury 101
	menuArray[1] = new Array ()  //accidents
	menuArray[2] = new Array ()  //sci
	menuArray[3] = new Array ()  //cp
	menuArray[4] = new Array ()  //tbi
	menuArray[5] = new Array ()  //malp
	menuArray[6] = new Array ()  //death
	menuArray[7] = new Array ()  //nurse
	menuArray[8] = new Array ()  //plane crash

	menuArray[0][0] = new Array ("Railroad Defense", "railroad_defense.html")
	menuArray[0][1] = new Array ("Overview", "railroad_defense.html")

	menuArray[1][0] = new Array ("Automobile Accidents", "flcontent/acci_over_t.asp")
	menuArray[1][1] = new Array ("Overview", "flcontent/acci_over_t.asp")
	menuArray[1][2] = new Array ("Automobile Damage FAQ", "flcontent/acci_damagefaq.asp")
	menuArray[1][3] = new Array ("Insurance Coverage", "flcontent/acci_inscover.asp")
	menuArray[1][4] = new Array ("Seatbelt Issues", "flcontent/seatbelt_issues.asp")
	menuArray[1][5] = new Array ("Passenger Injuries", "flcontent/pass_injuries.asp")
	menuArray[1][6] = new Array ("Pedestrian Injuries", "flcontent/ped_injuries.asp")
	menuArray[1][7] = new Array ("Post-Accident FAQ", "flcontent/postacc_faq.asp")
	menuArray[1][8] = new Array ("Whiplash", "flcontent/whiplash.asp")
	menuArray[1][9] = new Array ("Speeding", "flcontent/speeding.asp")

    menuArray[2][0] = new Array ("Large Truck Cases", "flcontent/truck_over_t.asp")
	menuArray[2][1] = new Array ("Overview", "flcontent/truck_over_t.asp")
		
	menuArray[3][0] = new Array ("Medical Malpractice", "flcontent/malp_over_t.asp")
	menuArray[3][1] = new Array ("Overview", "flcontent/malp_over_t.asp")
	menuArray[3][2] = new Array ("Types of Malpractice", "flcontent/malp_types.asp")
	menuArray[3][3] = new Array ("Delayed Cancer Diagnosis", "flcontent/malp_dcd.asp")
	menuArray[3][4] = new Array ("Duty of Care", "flcontent/malp_duty.asp")
	menuArray[3][5] = new Array ("Causation", "flcontent/malp_cause.asp")
	menuArray[3][6] = new Array ("Damages", "flcontent/malp_damage.asp")
	menuArray[3][7] = new Array ("Doctor/Patient Confidentiality", "flcontent/malp_docpat.asp")
	menuArray[3][8] = new Array ("Hospital Cases", "flcontent/malp_hospital.asp")
	menuArray[3][9] = new Array ("Informed Consent", "flcontent/malp_informconsent.asp")
	
	menuArray[4][0] = new Array ("Wrongful Death", "flcontent/death_over_t.asp")
	menuArray[4][1] = new Array ("Overview", "flcontent/death_over_t.asp")
	menuArray[4][2] = new Array ("Damages for Death", "flcontent/death_damages.asp")
	menuArray[4][3] = new Array ("Common Defenses", "flcontent/death_defense.asp")
		
	menuArray[5][0] = new Array ("Maritime Accidents", "maritime_overview.html")
	menuArray[5][1] = new Array ("Maritime Overview", "maritime_overview.html")
	menuArray[5][2] = new Array ("Jones Act", "jones_act.html")
	menuArray[5][3] = new Array ("Boating Accidents", "boating.html")
	menuArray[5][4] = new Array ("Overview", "boating.html")
		
	menuArray[6][0] = new Array ("Traumatic Brain Injury", "flcontent/tbi_over_t.asp")
	menuArray[6][1] = new Array ("Overview of TBI", "flcontent/tbi_over_t.asp")
	menuArray[6][2] = new Array ("Proving TBI", "flcontent/tbi_proving.asp")
	menuArray[6][3] = new Array ("Indications of TBI", "flcontent/tbi_indicate.asp")
	menuArray[6][4] = new Array ("Experts Involved", "flcontent/tbi_expert.asp")
	menuArray[6][5] = new Array ("TBI Data", "flcontent/tbi_data.asp")
	menuArray[6][6] = new Array ("Links and Resources", "flcontent/links/tbi_links.asp")
	
	menuArray[7][0] = new Array ("Nursing Home Abuse", "flcontent/nursing_over_t.asp")
	menuArray[7][1] = new Array ("Overview", "flcontent/nursing_over_t.asp")
	menuArray[7][2] = new Array ("Regulations", "flcontent/nursing_regs.asp")
	menuArray[7][3] = new Array ("Checklist", "flcontent/nursing_check.asp")
	menuArray[7][4] = new Array ("OBRA", "flcontent/nursing_obra.asp")
	menuArray[7][5] = new Array ("Recent Verdicts", "flcontent/nursing_verdict.asp")
	menuArray[7][6] = new Array ("Links and Resources", "flcontent/links/nursing_links.asp")
		
	menuArray[8][0] = new Array ("Insurance Bad Faith", "flcontent/badfaith_over_t.asp")
	menuArray[8][1] = new Array ("Overview", "flcontent/badfaith_over_t.asp")
	menuArray[8][2] = new Array ("Insurance Adjusters", "flcontent/badfaith_adjusters.asp")
	menuArray[8][3] = new Array ("Links and Resources", "flcontent/links/badfaith_links.asp")
			      
	return menuArray
}

