//store the quotations in arrays
//To add another quote, 

//Step 1: increment size of the array by the number of quotes you wish to add
//ex: if you want to add 3 quotes and the quotes array is: Array(8). Add 3 more to the array and it becomes Array(11)

//Step 2: copy the last line in the current quote definitision from quote[x] = ".... to ;
//Step 3: paste the new line at the end and increment the number of the quote by 1 and repeat from step 2 unti you're done adding your quotes
//ex: quotes[5] = "insert quote here"; is copied and pasted on the next line and becomes quote[6] = "insert quote here"; then type in your new quote over "insert quote here". Just make sure you leave the quotation marks around the quote itself.

//define the size of the array (i.e. how many quotes do you have?)
quotes = new Array(10);
authors = new Array(10);

//define each quote in the array, note the numbering begins at 0
quotes[0] = "There can be no real individual freedom in the presence of economic insecurity.";
authors[0] = "Chester Bowles";

quotes[1] = "The strength of the United States is not the gold at Fort Knox or the weapons of mass destruction that we have, but the sum total of the education and the character of our people.";
authors[1] = "Claiborne Pell";

quotes[2] = "The foundation of every state is the education of its youth.";
authors[2] = "Diogenes Laertius";

quotes[3] = "Upon the education of the people of a country, the fate of a country depends.";
authors[3] = "Benjamin Disraeli";

quotes[4] = "Math is radical!";
authors[4] = "Bumper Sticker";

quotes[5] = "Right now, American corporations outsource jobs overseas because the workforce is cheaper; in 20 years, they’ll outsource jobs because the workforce is better.  We’ve got to change that.";
authors[5] = "Jacob Stuart";

quotes[6] = "Metro Orlando has long been known as one of the world's top visitor destinations.  It is the goal of the EDC to expand on that strong brand by also telling the world our region's tremendous business and education story.";
authors[6] = "Raymond Gilley, President and CEO, Metro Orlando Economic Development Commission";

quotes[7] = "Competing in the global marketplace means we need to be cutting edge in every area of our community.";
authors[7] = "Stuart Rogel, President, Tampa Bay Partnership";

quotes[8] = "Finding a quality workforce locally is a key factor to my company's success.";
authors[8] = "Beverly J. Seay, Senior VP Business Unit General Manager, Science Applications International Corporation";

quotes[9] = "I want to live in a community that provides both quality education for our children and great career opportunities when they graduate.";
authors[9] = "Dr. Gail F. McKinzie, Superintendent, Polk County Public Schools";




//-------------=====DO NOT CHANGE ANYTHING BELOW HERE=====-------------//

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<p class=\"Quote\">");
document.write("\"" + quotes[index] + "\"");
document.write("</p>");

if (authors[index] != "") {
document.write("<p class=\"QuoteAuthor\">");
document.write(authors[index]);
document.write("</p>");
}




//done