// JavaScript Document
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] = "Specializing in Limestone Products Since 1941.";
Quotation[1] = "Our plants are capable of producing up to 13 products simultaneously, up to 15,000 tons per work shift.";
Quotation[2] = "Specializing in Limestone Products Since 1941.";
Quotation[3] = "We provide our customers with superb quality at competitive prices.";


// ======================================
// 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();













