// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "\"Being a member in the lab has not only taught me a lot about quantitative research, but it also led to my decision to attend grad school.\"<br \/>&mdash;Rebecca Norris, graduate student";
Quotation[1] = "\"It's a place where you can learn a whole lot about research while still joking around with professors and other students.\"<br \/>&mdash;Rebecca Norris, graduate student";
Quotation[2] = "\"The practical experience that I gained in my two years at the PRIME lab meant I was practicing the principles that I learnt in class.\"<br \/>&mdash;Arun Venkataraman, research analyst, Godbe Research and Analysis";
Quotation[3] = "\"Working in the PRIME Lab has been invaluable in shaping my decisions about graduate school and even choosing a career.\"<br \/>&mdash;Rachel Bailey, graduate student";
Quotation[4] = "\"I not only had the opportunity to explore an area I would not be exposed to under normal circumstances, I stretched and honed my skills as an analyst, a researcher, and a critical thinker&mdash;skills that I think make me a more valuable asset to my agency.\"<br \/>&mdash;Kimberlee Pepple, research specialist, Fleishman Hillard";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();