/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="Dr. Sandra Byers is Chair of the Psychology Department. She teaches and conducts research in human sexuality. 'Psychology is relevant to every aspect of people's lives.'";
}

if (quotes==1) {
body="Dr. Esam Hussein has a PhD in Nuclear Engineering and received the Canadian Nuclear Association Innovation Achievement Award in 2003. 'I see engineering as 'brain sport'.";
}
if (quotes==2) {
body="Dr. Nicole Letourneau was recently awarded $500,000 to research vulnerable infants, children, and youth. ' UNB is my alma mater. I wanted to give back to my students…";
}
if (quotes==3) {
body="Dr. Garbriela Tymowski researches and teaches ethics in sports, focusing on children. 'I strongly believe that optimal health is the cornerstone to a satisfying and enjoyable life.'";
}
document.write('<div align=left><br>');
document.write('' + body +'');
document.write('</div>');


