// A list of feedback:
var feedback = new Array();
		feedback[0] = "&quot;It's great to meet one-on-one with an experienced consultant. It allows you to ask detailed questions and get direct feedback.&quot;<br>- Student 11/13/08";
		feedback[1] = "&quot;The session was very useful, particularly because I found out about the pattern of mistakes I make, and will be careful about them the next time.&quot;<br>-Student 10/15/08"; 
		feedback[2] = "&quot;I found it useful receiving feedback from a writing tutor about what were the weak parts and strong parts of my essay. It helped me to figure out what I needed to add or change. The tutor also helped me develop a better thesis.&quot;<br>-Student 10/21/08"; 
		feedback[3] = "&quot;I would use the Writing Center again because it was beneficial for me and I am positive it will be positive for others as well.&quot;<br>-Student, 10/23/08"; 
		feedback[4] = "&quot;The consultant showed me a useful way to analyze pictures. This is very crucial for my paper because my paper bases its argument through different advertisements.&quot;<br>-Student, 10/30/08"; 
		feedback[5] = "&quot;My main problem was organizing all of my thoughts and making sense of them. My consultant helped me do that and form a SOLID thesis statement.&quot;<br>-Student, 11/3/08"; 
		feedback[6] = "&quot;My consultant was really helpful with the assignment. I feel more confident in completing the assignment.&quot;<br>-Student, 11/20/08"; 
		feedback[7] = "&quot;The writing consultant helped me find a way to improve my essay by forming a map, according to which I can complete, revise and edit my essay.&quot;<br>-Student, 12/9/08"; 
		feedback[8] = "&quot;I learned that I need to expand on my ideas and concentrate on writing in a more concrete and specific manner.&quot;<br>-Student, 10/28/08"; 
		feedback[9] = "&quot;I think that this is a great service and anyone struggling with their writing should give it at least one shot.&quot;<br>-Student, 10/28/08"; 
		feedback[10] = "&quot;I can definitely see myself using the WC again because I know that one strong paper isn't enough to get a strong grade and I know it will take more practice for me to be able to make these revisions on my own.&quot;<br>-Student, 10/28/08"; 
		feedback[11] = "&quot;It's very helpful. There is no question that I will come to writing center again and again!&quot;<br>-Student, 11/2/08"; 
		
// A list of image urls 
// (same number of image urls as feedback and in matching sequence of image to quote):
var images = new Array();
		images[0] = "";
		images[1] = "";
		images[2] = "";
		images[3] = "";
		images[4] = "";
		images[5] = "";
		
// When the page loads:
// 1) a new random index is generated:
var randIndex = Math.floor(Math.random() * feedback.length);

// 2) We reference the quote at the randomIndex:
var randFeedback = feedback[randIndex];

// 3) We also reference the image url at the same random index:
var randImage = images[randIndex];
		
