function rotateEvery(sec)
{
    var Quotation=new Array()

    // QUOTATIONS
     Quotation[0] = "Thanks for everything..you guys are doing great";
    Quotation[1] = "Santosh - You did more than deliver on time - you're the best!!";
    Quotation[2] = "Great...Thanks...Keep up the good work";
    Quotation[3] = "Boy I am happy this one got done so quickly! The client was desperately needing it completed by the 30th. So great job and thank you!";
    Quotation[4] = "Have I ever told you it's such a pleasure to work with you and your staff! Have a great day.";
    Quotation[5] = "Thank you for your assistance. The information you provided will give us a place to reference";    Quotation[6] = "Thank you so much for all of your hard work.";
    Quotation[7] = "Thank you, Santosh. I do realize that you had just received the request however the client was being quite persistent. Thank you for pushing this search through as quickly as you did.";
        Quotation[8] = "Well thank you for that communication! The client would greatly appreciate the status update. Thank you for your hard work and you always do a wonderful job!";
    Quotation[9] = "This is impressive. Thank you very much team!! Keep up the good work!";
    Quotation[10] = "You and your team are AWESOME!!!! Thank you very much for your assistance on this search. It was GREATLY appreciated.";


    var which = Math.round(Math.random()*(Quotation.length - 1));
    document.getElementById('textrotator').innerHTML = Quotation[which];
    
    setTimeout('rotateEvery('+sec+')', sec*3000);
}
