// ==============================================
// 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] = "LPPC members own and operate over 75,000 megawatts of generation";
Quotation[1] = "LPPC represents 24 of the nation's largest locally owned and controlled power systems";
Quotation[2] = "LPPC members are actively reducing greenhouse gases through conservation, energy efficiency and the use of renewable resources";
Quotation[3] = "LPPC members provide reliable, low cost electricity to some of the largest cities in the nation";
Quotation[4] = "Members of the LPPC own and operate nearly 90% of the transmission investment owned by non-federal public power entities in the United States";


// ======================================
// 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();