// Author:Brandon Checketts
// Homepage: http://www.apeleon.net/~microbit/brandon.html
// Email: Brandon@microbits.com
// For this script and more, visit http://wsabstract.com

numQuotes=9;
quoteArray = new Array(numQuotes);
quoteArray[0]="\"The learning freedom that this adjunct course offered and the writing and reading skills that we learned made it an excellent experience.\"";
quoteArray[1]="\"Interacting with the people in my reading adjunct class gave me a perspective of the different styles of studying habits. This helped me to fine tune the way that I study, and made me become a more efficient learner.\""
quoteArray[2]="\"Writing and discussion let me interact with the material rather than merely regurgitating what I learned in lecture.\""
quoteArray[3]="\"Working collaboratively in the adjunct course has helped me gain more understanding about the topics we were discussing. I also was able to meet and interact with people that I never would have talked to in a large lecture hall.\""
quoteArray[4]="\"I value my time and I am not an individual who will sign up for worthless time-consuming activities, so I asked around and everyone I talked to told me to take this course.\""
quoteArray[5]="\"I think that the more you talk and listen to others about the material, the better it sticks with you. I remember almost every question discussed in the activities--this is not the case when just reading the book.\""
quoteArray[6]="\"The benefits of writing about what I read are enormous. It helps me recall details, reinforces large amounts of information, and at the end becomes a resource for studying.\"" 
//-------------------------------------------------------------------------------
// This is the largest quote.  Additional quotes cannot be larger than this one!
//-------------------------------------------------------------------------------
quoteArray[7]="\"The Reading in the Disciplines course is effective because it gives me manageable assignments and lets me discuss the course material with my peers. It allowed me to meet several of my classmates, and we assist each other in learning.\""
//-------------------------------------------------------------------------------
quoteArray[8]="\"Reading In the Disciplines got me out of my usual procrastinator ways and helped me reach my full potential. Taking this class is the best move I have made since being here.\""
quoteArray[9]="\"I hope to have the opportunity to participate in some more of these reading adjunct classes. I will be looking for a reading adjunct class next year and if I can get into one, I am there.\""

quoteShowing=-1;

function randQuote()
{ 
  quoteShowing = Math.ceil(Math.random() * numQuotes);

  document.quoteForm.quoteHere.value = quoteArray[quoteShowing];
}

window.onload=randQuote
