﻿function rotateQuoteEvery(sec) {
    var Quotation = new Array()

    // QUOTATIONS
    Quotation[0] = 'Over 25 years of experience protecting organizations';
    Quotation[1] = 'Customizable packages to meet your specific needs';
    Quotation[2] = 'Certified WBENC 100% woman owned corporation';
    Quotation[3] = '  Full service risk management firm  ';
    Quotation[4] = 'Highly trained and experienced background investigators';
    Quotation[5] = 'Strategic partnerships ensuring organizations are protected';
    Quotation[6] = 'Experience The Pinnacle difference today';
    
    var which = Math.round(Math.random() * (Quotation.length - 1));
    document.getElementById('textrotator').innerHTML = Quotation[which];

    setTimeout('rotateQuoteEvery(' + sec + ')', sec * 1000);
}
