// JavaScript Document
var myquotes = new Array(
        '<span class="quote">"With GB Web Creations design and knowledge, our web site has become more user-friendly, and the most frequently used site within our City. The creative design of our department home page won a first place award from the Learning Resources Network, a distinguished honor we are most proud of."<br> <span class="black">Thomas Hubbard, Director <br> South Burlington Recreation Dept.</span></span>',

        '<span class="quote">"It has been a pleasure working with GB Web Creations.  Geoff is professional and fast.  He took our ideas and themes and designed a site better then we imagined!"<br> <span class="black">Kelly Curtis<br> Catamount Classic</span></span>',
		
        '<span class="quote">"We could not be happier with GB Web Creations. From the start, Geoff was knowledgeable and extremely easy to work with. He guided us through the process, had great suggestions, but he also listened to what we wanted. He created a beautiful and user-friendly website for us. We are very excited about the outcome."<br> <span class="black"> Sean and Nicole Sothard</span></span>' // Leave the last quote without a comma at the end
        );
 
function rotatequote()
{
        thequote = myquotes.shift(); //Pull the top one
        myquotes.push(thequote); //And add it back to the end
        
        document.getElementById('quotetext').innerHTML = thequote;
        // This rotates the quote every 10 seconds.
        // Replace 10000 with (the number of seconds you want) * 1000
        t=setTimeout("rotatequote()",10000);
}
