var howOften = 6; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var message=new Array();
  message[0] = "<span class='review_show'>THE TROJAN WOMEN</span><br> \
            <span class='review_quote'>&quot;...Maechi Aharanwa is wonderful as the half mad Cassandra...She also has the best wail of all the actors.&quot;</span><br> \
            <span class='review_author'>- Arlene McKanic, ASTORIA TIMES</span>";
  message[1] = "<span class='review_show'>THE BLACKS: A CLOWN SHOW</span><br> \
            <span class='review_quote'>&quot;...In particular the razor sharp improv skills of Maechi Aharanwa... are used to great effect.&quot;</span><br> \
            <span class='review_author'>- Tom Penketh, BACKSTAGE.COM</span>";
  message[2] = "<span class='review_show'>MACBETH</span><br> \
            <span class='review_quote'>&quot;...The trio of witches...easily steal the show. When they leap onton the stage in a fit of feminine brio...&quot;</span><br> \
            <span class='review_author'>- Alexis Soloski, THE VILLAGE VOICE</span>";
  message[3] = "<span class='review_show'>THE BLACKS: A CLOWN SHOW</span><br> \
            <span class='review_quote'>&quot;Also to be commended are...Maechi Aharanwa, who is nearly an elemental force as Snow...&quot;</span><br> \
            <span class='review_author'>- Dan Bacalazo, THEATERMANIA.COM</span>";
  message[4] = "<span class='review_show'>MISS JULIE</span><br> \
            <span class='review_quote'>&quot;...Aharanwa's best moments are when Christine herself indulges in fantasy...Her shift in expression is touching.&quot;</span><br> \
            <span class='review_author'>- Robin Roger, TACONIC PRESS</span>";
  message[5] = "<span class='review_show'>Mother Courage</span><br> \
            <span class='review_quote'>&quot;...Aharanwa's Catherine is a haunting and lingering figure despite her lack of words.&quot;</span><br> \
            <span class='review_author'>- Warren Hoffman, OFF BROADWAY</span>";

function newsRotater() {
    document.getElementById("reviewQuotes").innerHTML = message[current];
    current = (current==message.length-1) ? 0 : current + 1;
    setTimeout("newsRotater()",howOften*1000);
}