// ============================================== // 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] = "Enjoying the Music and the Weather"; Quotation[1] = "Ernie Hawkins and His Acoustic Blues Repertoire Class"; Quotation[2] = "The View from the College of the Atlantic"; Quotation[3] = "Class on the Terrace"; Quotation[4] = "Practicing After Class"; Quotation[5] = "On Top of Cadillac Mountain in Acadia National Park"; Quotation[6] = "Playing the Uke at the Student Concert"; Quotation[7] = "The View from Cadillac Mountain in Acadia National Park"; // ====================================== // 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();