//this is the array database for the chiro menu
//it is used in conjuction with the cascade.js
//it returns a global array value for the menu links

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 ("Injury Law 101", "content/pi_over_t.asp")
	menuArray[0][1] = new Array ("Overview", "content/pi_over_t.asp")

	menuArray[1][0] = new Array ("Motor Vehicle Collisions", "content/acci_over_t.asp")
	menuArray[1][1] = new Array ("Overview", "content/acci_over_t.asp")
	menuArray[1][2] = new Array ("Automobile Damage FAQ", "content/acci_damagefaq.asp")
	menuArray[1][3] = new Array ("Insurance Coverage", "content/acci_inscover.asp")
	menuArray[1][4] = new Array ("Seatbelt Issues", "content/seatbelt_issues.asp")
	menuArray[1][5] = new Array ("Passenger Injuries", "content/pass_injuries.asp")
	menuArray[1][6] = new Array ("Pedestrian Injuries", "content/ped_injuries.asp")
	menuArray[1][7] = new Array ("Post-Accident FAQ", "content/postacc_faq.asp")
	menuArray[1][8] = new Array ("Whiplash", "content/whiplash.asp")
	menuArray[1][9] = new Array ("Speeding", "content/speeding.asp")
	menuArray[1][10] = new Array ("Speeding Data", "content/speeding_data.asp")
	menuArray[1][11] = new Array ("Injury Data", "content/auto_injury.asp")
	menuArray[1][12] = new Array ("State Accident Chart", "content/auto_state.asp")

	menuArray[2][0] = new Array ("Semi-Truck Collisions", "content/truck_over_t.asp")
	menuArray[2][1] = new Array ("Overview", "content/truck_over_t.asp")
	menuArray[2][2] = new Array ("Data", "content/truck_data.asp")

	menuArray[3][0] = new Array ("Motorcycle Collisions", "content/motorcycle_over_t.asp")
	menuArray[3][1] = new Array ("Overview", "content/motorcycle_over_t.asp")
	menuArray[3][2] = new Array ("Accident Data", "content/motorcycle_data.asp")
	menuArray[3][3] = new Array ("Safety Tips", "content/motorcycle_safety.asp")

	menuArray[4][0] = new Array ("Wrongful Death", "content/death_over_t.asp")
	menuArray[4][1] = new Array ("Overview", "content/death_over_t.asp")
	menuArray[4][2] = new Array ("Damages for Death", "content/death_damages.asp")
	menuArray[4][3] = new Array ("Common Defenses", "content/death_defense.asp")
	menuArray[4][4] = new Array ("Workplace Death", "content/death_work.asp")

	menuArray[5][0] = new Array ("Medical Malpractice", "content/malp_over_t.asp")
	menuArray[5][1] = new Array ("Overview", "content/malp_over_t.asp")
	menuArray[5][2] = new Array ("Types of Malpractice", "content/malp_types.asp")
	menuArray[5][3] = new Array ("Delayed Cancer Diagnosis", "content/malp_dcd.asp")
	menuArray[5][4] = new Array ("Duty of Care", "content/malp_duty.asp")
	menuArray[5][5] = new Array ("Causation", "content/malp_cause.asp")
	menuArray[5][6] = new Array ("Damages", "content/malp_damage.asp")
	menuArray[5][7] = new Array ("Doctor/Patient Confidentiality", "content/malp_docpat.asp")
	menuArray[5][8] = new Array ("Hospital Cases", "content/malp_hospital.asp")
	menuArray[5][9] = new Array ("Informed Consent", "content/malp_informconsent.asp")

	menuArray[6][0] = new Array ("Birth Injury", "birth_injury.html")
	menuArray[6][1] = new Array ("Overview", "birth_injury.html")

	menuArray[7][0] = new Array ("Foodborne Illness", "foodborne.html")
	menuArray[7][1] = new Array ("Overview", "foodborne.html")

	menuArray[8][0] = new Array ("Boating Accidents", "boating_accidents.html")
	menuArray[8][1] = new Array ("Overview", "boating_accidents.html")

			      
	return menuArray
}
