
// 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]="<div id=\"col2home1\" class=\"colHeight col2properties\">"
	fact[2]="<div id=\"col2home2\" class=\"colHeight col2properties\">"
	
	
	// 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()*1)+1))
	
	document.write(fact[random_num]);
}