// JavaScript Document

var Quote = Array(1);
var Author = Array(1);

Quote[0] = "Vulcan’s commitment to the social and business community in Azusa helps to make Azusa a great place to work and live.  We appreciate Vulcan’s ongoing support.";
Author[0] = "Azusa Chamber of Commerce";

Quote[1] = "Many of our children and their families have been impacted by the generosity of Vulcan Materials.  As a company, Vulcan has a history of investing in the community and ensuring our children have the opportunity to excel not only in school but as future citizens.";
Author[1] = "Barbara Dickerson, Ph.D., Homework House Board Member";

Quote[2] = "Vulcan Materials is a company with a conscience.";
Author[2] = "San Gabriel Valley Tribune, reporting that Vulcan had voluntarily joined the California Climate Action Registry";

Quote[3] = "Our partnership with Vulcan represents a public-partnership we are proud of.  Vulcan’s donation of the historic ranch to our land trust enabled us to restore the ranch as a Center for River Studies.";
Author[3] = "David Koehler, San Joaquin River Parkway and Conservations Trust";

Quote[4] = "Vulcan recognizes that the Earth’s resources are finite and that wise environmental stewardship is necessary to preserve the potential for a quality life for future generations.  You have met and exceeded technical environmental and regulatory requirements and truly deserve the Gold Award."
Author[4] = "The Honorable Daniel E. Lungren, Member of Congress";

function showQuote()
{
	var num=Math.floor(Math.random()*5);
	$("#QuoteBox").html("<p class=\"quotetext\">\""+Quote[num]+"\"</p><p class=\"quoteauthor\">"+Author[num]+"</p>");
}