//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 Law 101", "injury_law101.html")
	menuArray[1] = new Array ("Automobile Accidents", "accident_overview.html")
	menuArray[2] = new Array ("Spinal Cord Injury", "spinal_cord.html")
	menuArray[3] = new Array ("Traumatic Brain Injury", "tbi.html")
	menuArray[4] = new Array ("Lead Paint Exposure", "lead_paint_exposure.html")
	menuArray[5] = new Array ("Pesticide Exposure", "pesticide_exposure.html")
	menuArray[6] = new Array ("Toxic Molds", "toxic_mold.html")
	menuArray[7] = new Array ("Medical Malpractice", "medical_malpractice.html")
	menuArray[8] = new Array ("Wrongful Death", "wrongful_death.html")
	menuArray[9] = new Array ("Nursing Home Abuse", "nursing_home_abuse.html")
	menuArray[10] = new Array ("Airplane Accidents", "airplane_accidents.html")
    	menuArray[11] = new Array ("Dog Bites", "dog_bites.html")
	menuArray[12] = new Array ("Drunk Drivers", "drunk_drivers.html")
	menuArray[13] = new Array ("Large Truck Cases", "lg_truck_accidents.html")
	menuArray[14] = new Array ("Motorcycle Accidents", "motorcylce_accidents.html")
	menuArray[15] = new Array ("School Bus Accidents", "school_bus_accidents.html")
	menuArray[16] = new Array ("Slip and Fall", "slip_fall.html")
	menuArray[17] = new Array ("Structural Defects", "structural_defects.html")
	menuArray[18] = new Array ("Overview", "weather_related_accidents.html")
	menuArray[19] = new Array ("Contributory Negligence", "contributory_negligence.html")
	menuArray[20] = new Array ("Alabama Resources", "alcontent/al_resources.asp")
				      
	return menuArray
}
