
	var totalRefs = 7;
	
	var refArray = new Array(totalRefs);
	
	refArray[0]='"<b>Ronald W. Roskins, Ph.D.:</b> "Richard Watts inspires confidence because he is forthright, attentive and a straight-arrow..."';
	refArray[1]='<b>Ralph Hofstad, CEO:</b> "Richards unique ability to take a complex situation and make it understandable, thus solvable, is a unique trait I have found very meaningful ..."';
  refArray[2]='<b>Colin Powell:</b> "Congratulations on what you are doing... Keep it up!"...';
	refArray[3]='<b>Dr. Robert H. Schuller</b>, Founder and Senior Pastor of Crystal Cathedral Ministries, Garden Grove, CA...';
	refArray[4]='<b>Mikhail Gorbachev:</b> "I have great satisfaction in working with you and your organization in assisting with democratic reforms in Russia." (translated)...';
	refArray[5]='<b>Tom Harken, Best Selling Author:</b> "Attorney Richard Watts ... has always provided extremely good guidance, as well as excellent advice and counseling..."';
  refArray[6]='<b>Alain Ronc, President of Patagonia:</b> "Richard Watts works hard and very efficiently at keeping clients out of trouble thanks to his acute vision and understanding..."';

	var randNum = Math.floor(Math.random()*totalRefs);

	var imgSelect = '<img src="images/img_ref_'+randNum+'.jpg" width="160"><br />';
	var spacing = '<img src="images/spacer.gif" align="left" width="2" height="120" border="0" /><img src="images/spacer.gif" align="right" width="2" height="120" border="0" />';
	
	// write random featured reference to screen
	document.write(imgSelect+spacing+refArray[randNum]);
