/* 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 = 7;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="";
body="'Phelps Scholars is a wonderful program that blends different cultures into one and allows you to learn from each other in a positive atmosphere.'";
}

if (quotes==1) {
title="";
body="'Being a Phelps Scholar will help me in my future profession, because I need to be able to accept all the diversity in humanity'";
}

if (quotes==2) {
title="Leon Hendrix";
body="'The Phelps Scholars Program enhanced my sense of belonging on campus, helping me to appreciate the Hope College experience as a whole.'";
}

if (quotes==3) {
title="";
body="'The laughter has been great, and the friendships even better.'";
}

if (quotes==4) {
title="";
body="'PSP has been the best part of college to me. I've learned a lot and had lots of fun.'";
}

if (quotes==5) {
title="";
body="'The faculty are passionate and genuinely care about us as students.'";
}

if (quotes==6) {
title="";
body="'Being a Phelps Scholar gave me an immediate, big, diverse circle of friends.'";
}

document.write('<div align=center>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');