
// random quote/testimonial 
function doRandom(){
	// to add new facts, simply follow the existing structure - eg: fact[x]="quick fact"
	// each fact should be on a single line.
	// if a fact includes a " it will be required to put a backslash \ in front of it, otherwise it will give an error.
	// if a fact is added and/or removed, it will be required to update the equation random_num below.
	fact = new Array
	fact[1]="<h1>\"After dealing with Ben and the Gilmore Girls for many years, I've found that the service is always there when I need it.\"</h1><p>Len Chan<br /><em>Transportation Coordinator</em><br /><em><strong>Stargate SG-1</strong></em></p>"
	fact[2]="<h1>\"Budget Rocks!\"</h1><p>Vanessa Lenarduzzi<br /><em>Production Manager</em></p>"
	fact[3]="<h1>\"Ben and all the staff make one of my jobs a lot easier.  As they say 'one call does it all'!\"</h1><p>Mark 'Blue' Angus<br /><em>Transportation Coordinator</em><br /><em><strong>Underworld 2</strong></em></p>"
	fact[4]="<h1>\"I can always count on Ben and the girls to get the job done.  One less thing I have to worry about.\"</h1><p>Bob Dennet<br /><em>Transportation Coordinator</em><br /><em><strong>Andromeda</strong></em></p>"
	
	// in the code below, the number that is being multiplied should be one less than the number of facts in the list above.
	random_num = (Math.round((Math.random()*3)+1))
	
	document.write(fact[random_num]);
}