/*	Random Testimonials
	G. Jason Head for the University of Pittsburgh
	11-30-2006
	
	Arrays should be in the order of:
	"Image Location", "URI", "Testimonial"
	(The ID is used in the CSS to send the background image.)
	
*/

var testimonial = new Array(	
			new Array("images/fr-testimonial/a.jpg", "about/testimonial-vahey.html", "The University of Pittsburgh&#8217;s Environmental Studies Program provided a very <strong>solid foundation for my graduate studies and career</strong> as an environmental coordinator."),
			new Array("images/fr-testimonial/b.jpg", "about/testimonial-sierawski.html", "An average year included working to <strong>conserve</strong> the last wild expanse of steppe-land in Mongolia, <strong>debating</strong> environmental law in a lecture hall, and <strong>analyzing</strong> rock compositions and soil samples in a lab."),
			new Array("images/fr-testimonial/c.jpg", "about/testimonial-boyd.html", "The program is small enough where you get to know everyone, but big enough that you will always <strong>gain a variety of experiences.</strong>")
			);		
var j;
j=parseInt(Math.random()*testimonial.length);
j=(isNaN(j))?0:j;
var currentTestimonial = "<img src='" + testimonial[j][0] + "' alt='Testimonial Photo' border='0' width='179' height='128' /><blockquote><a href='" + testimonial[j][1] + "'><span class='hide'>&quot;</span>" + testimonial[j][2] + "&quot;</a></blockquote>";








