// this is javascript code, not PHP // to add quotes, add new lines here // every quote must be surrounded in quotation marks, with a comma afterwards, unless it's the last one in the list // IMPORTANT - if you want quotation marks to show up on screen, you must put a backslash in front of them quotes=new Array( "\"Phare Play's cast is winning.\" -- Backstage for The Eight: Reindeer Monologues", "\"A touching and entertaining production that any audience can enjoy\" -- Off Off Online for Callback", "\"A perfect selection for Blake Bradford and Ms. Darling\" -- Backstage for Callback", "\"[2 time Emmy Winner] Joan Darling and Greg Mullavey really SHINE together\" -- Backstage for Callback", "\"A love letter to the theater\" -- HX for Callback", "\"It captures all the highs and lows of this crazy business\" -- HX for Callback", "\"Dark of the Moon SIMMERS\" -- Backstage", "\"Ingenious\" -- Backstage for Dark of the Moon", "\"A visceral, atmospheric appeal that has a strong pull!\" -- Off Off Online for Dark of the Moon", "\"Very, very funny performance\" -- Off Off Online for Complete Works of Shakespeare", "\"If you're looking for a production that will make you laugh, you'll find it here\" -- Off Off Online for Complete Works of Shakespeare", "\"I found this production ambitious, full of risk, intelligently presented and pretty much what Off-Off Broadway is supposed to be\" -- Curtains Up for The Cherry Orchard" ); //don't touch anything from here on var fadenumber=10; function getrandomquote() { x=document.getElementById("quotes"); do { arrPos=Math.floor(Math.random()*quotes.length); randomquote=quotes[arrPos]; } while (randomquote==x.innerHTML); x.innerHTML=randomquote; } function changeopacity() { x=document.getElementById("quotes"); try {x.style.opacity=(fadenumber/10);} catch(err){}; try {x.style.MozOpacity=(fadenumber/10);} catch(err){}; try {x.filters.alpha.opacity=(fadenumber*10);} catch(err){}; } function fadeout() { fadenumber--; changeopacity(); if (fadenumber>0) { t=setTimeout("fadeout()",80); } else { getrandomquote(); fadein(); }; } function fadein() { fadenumber++; changeopacity(); if (fadenumber<10) { t=setTimeout("fadein()",80); } else { t=setTimeout("fadeout()",4000); }; }