// ==============================================
// 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 Taos experience was a wonderful introspective journey of self, culture and history. We are all connected!</p>-Tracey Dreighton'
Quotation[1]='<p> My time spent studying in Taos was especially memorable because of the friendships I developed with other counseling students. The blending of art, nature, and education was unique and greatly contributed to my learning experience!</p>-Lindsay Wilson'
Quotation[2]='<p> What an opportunity to immerse oneself in an intense experiential environment, in the beauty of the Sangre de Cristo Mountains.  A chance to learn with the heart as well as the head, make connections that will last a lifetime, and come away a better counselor and better person.  Go if you can - you will not regret it!</p>-Renae Cobb'
Quotation[3]='<p> Studying in Taos was a great way to learn a lot of important material in a short time, in a beautiful setting that was a change of scene from the regular classroom. We really enjoyed having class time outdoors, enjoying the sunshine at the same time</p>-Erin Ray'


// ======================================
// 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();



