
var studentQuotes = new Array();
	studentQuotes[0] = "&ldquo;If not for Financial Aid I would be graduating with over &#36;80,000 in loans, but now I have much less debt to repay.  I especially enjoyed Federal Work Study since it provided money that was mine to do what I wanted with, like pay bills!&rdquo; <cite> &mdash; Leila L., Middle Childhood & Early Childhood Adolescence Education</cite>";
	studentQuotes[1] = "&ldquo;Between scholarships, work-study, and student loans, I am able to attend a private college that will focus on my needs.  Many scholarships are available and the merit scholarship options help significantly.&rdquo; <cite> &mdash; Jennifer M.";
	studentQuotes[2] = "&ldquo;Coming from a single parent family, financial aid has helped me secure a place in the Silver Lake College community.  Without financial aid, I wouldn't be able to continue living out my dream.&rdquo; <cite> &mdash;Maria P.</cite>";



function randomQuote() {
		if (!document.getElementById) return false;
		if (!document.getElementById("placeStudentQuote")) return false;
		var ranQuote = Math.floor(Math.random() * studentQuotes.length);
		var selectedQuote = studentQuotes[ranQuote];
		var placeQuote = document.getElementById("placeStudentQuote");
		placeQuote.innerHTML = selectedQuote;
}

addLoadEvent(randomQuote);