function rotateEvery(sec)
{
var Quotation=new Array()

// QUOTATIONS
// Note that single quotes and apostrophes must be escaped using a backslash before the character like so: \'
// In terms of quote length 140 characters is the rough maximum for the current header design, similar to the Business Week quote
Quotation[0] = '"The most important website on the planet" - Bruce Sterling';
Quotation[1] = '"A wealth of information on sustainability" - Pritzger prize winner Richard Meier';
Quotation[2] = '2nd leading sustainability site in the world - Nielsen ratings';
Quotation[3] = 'One of the world\'s top 15 environmental websites - Time Magazine';
Quotation[4] = '"Pioneering thinking... a clearing house for cutting-edge environmental thought" - WIE Magazine';
Quotation[5] = '"Worldchanging offers readers \'solutions-focused\' reporting on innovation" - NYTimes';
Quotation[6] = 'Top 10 Green Websites - The Guardian';
Quotation[7] = '100 Best Blogs - PC Magazine';
Quotation[8] = '"A comprehensive, cohesive vision for sustainability that feels perfectly in sync with the times" - Wired';
Quotation[9] = '"Worldchanging... is globally aware, technically savvy, design conscious, and above all, optimistic" - Wired';
Quotation[10] = '"Worldchanging is a cornucopia of solutions" - Audubon Magazine';
Quotation[11] = '"An ideas factory... examples covering solutions to every global problem." - New Scientist Magazine';
Quotation[12] = '"Read this. Gets you thinking." - US News & World Report';
Quotation[13] = '"If you are looking for pragmatic ways to make the world a better place... Worldchanging challenges us to change the world." - Nature Conservancy';
Quotation[14] = '"Vitally important... the book not only shows what is already possible but also helps all of us imagine what might be." - Al Gore';
Quotation[15] = '"Reads like a smart, hip mini-encyclopedia of what\'s new and what\'s next in green technologies and earth-conscious ideas." - Business Week';
Quotation[16] = '2007, Green Prize for Sustainable Literature';
Quotation[17] = '2005, Won the Utne Independent Press Award';
Quotation[18] = '2006, Finalist for a Webby for Best Blog';
Quotation[19] = '2007, Finalist for a Webby for Best Magazine';
Quotation[20] = '2007, Finalist for Bloggie awards for Best Group Weblog and Best Writing for a Weblog';
Quotation[21] = '2007, Won the Green Prize for Sustainable Literature for the Worldchanging book';
Quotation[22] = '2007, Won Organic Design Award';
Quotation[23] = '2007, Prix Arts Electronica nominee';
Quotation[24] = '2008, Named a Webby Official Honoree';

var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];

// Banner rotation time can be adjusted by changing the number after the asterisk: sec*1000 is very fast and sec*10000 is very slow
setTimeout('rotateEvery('+sec+')', sec*5000);
}
