// JavaScript Document
var values = new Array() ;

// rotating story functions
function add_random(key, value) {
	if(values[key] == null) {
		var newArray = new Array() ;
		values[key] = newArray ;
	}	
	values[key][values[key].length] = value ;
}

function write_random(key) {
	var random = Math.floor(Math.random()*values[key].length) ;
	document.write(values[key][random]) ;
}

function add_testimonial(content, location) {
	add_random("testimonial", "<p style=\"line-height:1.2em;\">" + content + "</p>") ;
}

add_testimonial(
	"&quot;ORD already knew the leaders in the areas we wanted to engage and so created a collaborative atmosphere from the beginning.&quot;<br/><br/>&nbsp; <strong><em>- Paul Hanle, President of Biotechnology Institute</em></strong>",
	"testimonial"
);

add_testimonial(
	"&quot;The Center for Structural Genomics of Infectious Diseases would never have been successful and awarded $31.2 million from NIAID without the help of the Office for Research Development.&quot;<br/><br/>&nbsp; <strong><em>- Wayne Anderson, Professor, Department of Molecular Pharmacology and Biological Chemistry</em></strong>",
	"testimonial"
);

add_testimonial(
	"&quot;The Kellogg Center for Biotechnology Management wouldn't have been able to execute the Stem Cell Education Symposium without the Office of Research Development.&quot;<br/><br/>&nbsp; <strong><em>- Alicia Loffler, Director Center for Biotechnology</em></strong>",
	"testimonial"
);