// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array(); // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0]='<p> The four Cs of why you should attend the Italy Study Abroad Program: country, cuisine, culture, and course. It was a rare opportunity to learn about mediation in a beautiful setting with an interjection of amazing pieces of art and history.</p>-Marty Nevil'
Quotation[1]='<p> Florence was the picture perfect setting to stimulate intellectual creativity for future counseling professionals and foster personal growth. It truly was an unforgettable experience...</p>-Julie Franklin'


// ======================================
// Do not change anything below this line
// ======================================

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();



