function get_num(pick) {
 // pick = number of testimonials to choose from
 var num = Math.floor( Math.random() * pick );
	return num;
}
function build_an04_testimonials() {

 // zero based matrix, i.e. number of skyscrapers -1 by number of params (link:0 and graphic link:1) -1
	var quote_array = new Array("The AFP Annual Conference is THE event to attend as a treasury professional. I always take home valuable new insights that I can directly apply to my job. Even more importantly, I take away a renewed enthusiasm to improve my operations.","The AFP Annual Conference provided a concentration of finance and treasury-related education to spark my energy. I took away fresh ideas and innovative approaches to keep my company competitive.","The AFP Annual Conference is an excellent ground for treasury and financial development, and a great opportunity to interact with my peers at various other corporations.","The AFP Annual Conference provides a collaborative environment for education, networking and strategic reflection. It is an event I look forward to each year, as it enables me to stay current on industry trends and talk with my clients and other corporate treasury practitioners about their current business challenges.","The AFP Annual Conference is an excellent way to get cash and treasury management education, while networking with others in the industry and observing first-hand the latest technology available. I wouldn't miss the opportunity!");
	var name_array = new Array("James P. Gilligan, CTP, Manager, Treasury Mgmnt","Charlene P. Bramble, CTP, Cash Management Analyst","Michael Barone, Relationship Manager","Catherine Bates, Senior Vice President","Richard D. Richardson, Senior Vice President");
		var company_array = new Array("Kansas City Power & Light","The Auto Club Group","Citigroup","Wachovia","Phoenix-Hecht");
	var an04_output;
 var rndm_num = get_num( quote_array.length);
 var holder;

	an04_output = "<P><SPAN class=note>" + quote_array[rndm_num] + " </span></p><P><SPAN class=note>-- " + name_array[rndm_num] + ", <em> " + company_array[rndm_num] + " </em></span></p>";
	

 return an04_output;
}





