// JavaScript Document
var Quotation=new Array() // do not change this!

Quotation[0] = "Sacramento International Airport is only 38 miles from Quail Run Apartments.";
Quotation[1] = "University of California, Davis is only 18 miles from Quail Run Apartments.";
Quotation[2] = "Vacaville is the most \“Electric Vehicle friendly\” city in Northern California because of public charging stations throughout the city.";
Quotation[3] = "Vacaville boasts the highest per capita ownership of electric vehicles in the world.";
Quotation[4] = "Sacramento is located 35 miles away to the east and San Francisco is located 55 miles to the southwest.";
Quotation[5] = "The Vacaville Skating Center hosts the UC Davis Ice Hockey Team.";
Quotation[6] = "The Vacaville area boasts 3 public, 1 private, and 1 mini golf course.";
Quotation[7] = "Over 15 ski resorts are within a 3 hour drive from Vacaville.";
Quotation[8] = "The San Francisco Bay and Delta are the most popular windsurfing and kiteboarding spots in Northern California.";
Quotation[9] = "There are over 100 marinas in the San Francisco Delta.";
Quotation[10] = "Lake Shasta is the largest man-made reservoir in California.";
Quotation[11] = "The largest fish ever landed in the US is a white sturgeon weighing 468 lbs was caught 25 miles from Vacaville.";


// ======================================
// 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();