			// Store "Did you know" text in arrays
			didyouknow = new Array(11);
			
			didyouknow[0] = "Hendrickson is the world's leading supplier of heavy-duty springs, producing nearly half of all flat-leaf springs and three-quarters of all parabolic taper-leaf springs for medium and heavy-duty trucks.";
			
			didyouknow[1] = "Hendrickson is the largest co-developer and consumer of air springs world wide, resulting in our own Hendrickson brand of air springs.";
			
			didyouknow[2] = "Hendrickson leads the bumper industry in new product innovation with developments including the HENDRICKSON AERO BRIGHT™ (HAB™) bumper, the industry's first-ever bright non-metal bumper.";
			
			didyouknow[3] = "Hendrickson is the only manufacturer of an integrated steer axle and front air suspension system for school busses and Class 8 trucks.";
			
			didyouknow[4] = "Hendrickson pioneered the walking beam suspension in 1926 and after many innovations still manufactures the most recognized mechanical vocational suspension on the market.";
			
			didyouknow[5] = "Hendrickson manufactures and machines hundreds of different parts including beam bushings, torque rods, cross tubes, saddles, frame hangers, trailing arms and axles.";
			
			didyouknow[6] = "Hendrickson is the number 1 trailer air suspension manufacturer in the world.";
			
			didyouknow[7] = "Hendrickson is the number 2 trailer axle manufacturer in North America.";
			
			didyouknow[8] = "Hendrickson designs, manufactures and sells only air suspension systems for trailer applications.";
			
			didyouknow[9] = "Hendrickson, the leader in trailer air suspension technology, was first and remains the only true producer of integrated air suspension systems.";
			
			didyouknow[10] = "Hendrickson air suspension innovations have led to the development of patented, integrated trailing arm and axle air suspension designs; TRI-FUNCTIONAL® pivot bushings, and unparalleled weight reductions.";
			
			
			function displayFact(){
				index = Math.floor(Math.random() * didyouknow.length);
				document.write(didyouknow[index]);
			}
			
			function nextFact(){
				index = Math.floor(Math.random() * didyouknow.length);
				document.getElementById("didyouknow").innerHTML= didyouknow[index];
			}

		function formHandler(){
			frm = document.catform;
			var URL = frm.litcat.options[frm.litcat.selectedIndex].value;
			if (URL!="")
			{
				window.location.href = URL;
			}
			else
			{
				alert("Please select a category");
			}
		}
