//format for quotes:  {quote:"quote text",citation:"citation text"}  use &quote; for quotation marks inside the text values
quoteRotator = {
"time": 20,
"i":1,
"quotes" :  [
{quote:"Anyone concerned about the state of global politics-- and about the state of political humor -- should listen to the Mime troupe's message.",citation:"The New York Times"},
{quote:"...have the famed company declared California's official state theater. Who else?",citation:"San Diego Union"},
{quote:"The San Francisco Mime Troupe is America's oldest and finest street theater... more professional than most of our presumably professional companies.",citation:"The New York Post"},
{quote:"You're never only watching a political theater piece, but rather a double barreled re-invention of politics and theater at once.",citation:"The Boston Globe"},
{quote:"What makes political theater work? Passion, anger and humor",citation:"Albuquerque Journal"},
{quote:"When you hear people say theater is dying -- tell them about the San Francisco Mime Troupe.",citation:"The Ohio Plain Dealer"},
{quote:"Politics is not the only reason to see the Mime Troupe. Those who enjoy theater, farce, Monty Python, musical comedy or even urban politics will enjoy the show.",citation:"News-Leader, Florida (2000, City for  Sale)"},
{quote:"Mime Troupe puts on its best show in years...the Mime Troupe has come up with some canny and mordant takes on San Francisco's gleaming gentrification.",citation:"The San Francisco Chronicle (1999, City for Sale)"},
{quote:"Part savagely acute political satire, part living newspaper and all broad, tuneful and timely musical comedy, 'Killing' is the Mime Troupe's most direct grapple yet with the war in Iraq. It's very funny and equally politically engaged...in the best tradition of agitprop theater.",citation:"The San Francisco Chronicle (2007, Making a Killing)"},
{quote:"'Eating It' is nutritious entertainment -- timely, funny, provocative, sharply staged and beautifully performed. It just goes to show the continual wonders of splicing hot political issues with the unique skills of the San Francisco Mime Troupe.",citation:"San Francisco Examiner (2000, Eating It)"},
{quote:"Energized by the resurgent right...the inexhaustible purveyors of agit-prop musical comedy have responded with their sharpest, funniest and most exhilarating show in years.",citation:"The San Francisco Chronicle (2001, 1600 Transylvania Avenue)"},
{quote:"Mr. Smith Goes to Obscuristan is one of the funniest, best constructed and cleverly produced cartoons of political satire the Mime Troupe has produced in several years.",citation:"Bay Area Reporter (2002, Mr. Smith Goes to Obscuristan)"},
{quote:"It's laced with sharply pointed humor. It's fiercely politically engaged.",citation:"The San Francisco Chronicle (2005, Doing Good)"}

],
"num_quotes" : 13,
	"opac":100,
	"showFading":1,
"quotesInit":function(){
    $('quoterotator').height = "100px";
	$('quoterotator').innerHTML="<div class='quote'>\""+this.quotes[0].quote+"\"<span style=\"float:right;text-align:right;font-weight:bold;\"> -- "+this.quotes[0].citation+"</span></div>";
	if(this.num_quotes>1){
		setInterval("quoteRotator.quoteRotate()", 10000);
	}
},
"quoteRotate":function(i){
    setTimeout ("new Effect.Fade('quoterotator',{duration:2})", 8000);
    new Effect.Appear('quoterotator',{duration:2});
	$('quoterotator').innerHTML = "<div class=\"quote\">\""+this.quotes[this.i].quote+"\"<span style=\"float:right;text-align:right;font-weight:bold;\"> -- "+this.quotes[this.i].citation+"</span></div>";
	this.i++;
	if(this.i==this.num_quotes){
		this.i=0;
	}
}
}

