// JavaScript Document
/* var seconds=100;  rotate every 2 seconds */
//		Quotation[4] = 'Fiveth quotation';
//      Quotation[5] = 'Sixth quotation';
//		Quotation[6] = 'You can add <b>as many</b> quotations <b>as you like</b>'; 
function rotate()
{
        var Quotation=new Array()

        // QUOTATIONS
        Quotation[0] = '"I truly believe with this new addition [SymposiumLIVE] we have taken our online program to a higher level."<br /><div align="right">-- Mark G. Manzanares Ph.D.<br />Adams State College<br /></div><a href="../testimonials/testimonials.asp">more...</a>';
        Quotation[1] = '"FAU licensed SymposiumLIVE because we needed a way to integrate streaming video into our Blackboard courses."<br /><div align="right">-- Nancy Rubin<br />Florida Atlantic University<br /></div><a href="../testimonials/testimonials.asp">more...</a>';
        Quotation[2] = '"We excel in program development and partnerships because we can depend on Realcast reliability and quality of service."<br /><div align="right">-- Joy Veasy<br />Broward County Public Schools <br /></div><a href="../testimonials/testimonials.asp">more...</a>';
        Quotation[3] = '"SymposiumLIVE™ is an excellent addition to the building block family."<br /><div align="right">-- Jan Posten Day<br />Blackboard<br /></div><a href="../testimonials/testimonials.asp">more...</a>';
        Quotation[3] = '"SymposiumLIVE™ has given us a one-step solution for uploading audio and video."<br /><div align="right">-- Susan Zvacek<br />Blackboard<br /></div><a href="../testimonials/testimonials.asp">more...</a>';

        var which = Math.round(Math.random()*(Quotation.length - 1));         document.getElementById('textrotator').innerHTML = Quotation[which];
}
function start()
{
  rotate();
}