// Description: This JavaScript code randomly selects one of the following quotes. You can add a new
// quote by creating a new line and adding a comma at the end of the last one.

var quote = new Array (
"We study a variety of topics with a variety of experimental methods - Anne Adams",
"Human Factors is an exciting field, with broad research applications. - Jenay Beer",  
"I like to think that the world is my laboratory! - Jenay Beer",
"I like our collaborative nature, there is always someone to work with you - Ralph Cullen",
"We maintain a basic theoretical grounding while solving applied problems. - Andrew Mayer, Alumnus.",
"Our lab members come from diverse educational backgrounds - Andrew Mayer, Alumnus.",
"Our research has very real, practical implications - Sara McBride",
"Our focus on aging and technology is unique - Sara McBride",
"The study of Human Factors is important because you can improve people’s daily lives through how they interact with technology. – Cory-Ann Smarr",
"We have a collaborative environment  - Tracy Mitzner",
"We are able to implement various methodologies to address many types of research questions - Tracy Mitzner"
		);

document.write(quote[Math.floor(Math.random()*quote.length)])

