﻿function rotateEvery(sec) {
    var Quotation = new Array()

    // QUOTATIONS
    Quotation[0] = 'Does the agency sell your applicants personal information that can later result in identity theft issues for your staff and volunteers?';
    Quotation[1] = 'When you call will you be able to speak to a qualified professional who is knowledgeable about employment screening law as opposed to a salesperson whose sole responsibility is to sell data?';
    Quotation[2] = 'Are you getting real time, complete, and current courthouse searches or limited database records?';
    Quotation[3] = 'If the agency offers “statewide searches” do these searches access all of the official state repository records, i.e. warrants, plea deals, deferrals, etc.  or just conviction data.';
    Quotation[4] = 'If the agency offers “statewide searches” are you getting both felony and misdemeanor records when you request a search?';
    Quotation[5] = 'Does the agency understand due-diligence searches  and are they able to help you develop a due-diligence search program for your organization?';
    Quotation[6] = '<br><br>Does the agency provide current and complete Federal records?<br><br><br>';
    
    var which = Math.round(Math.random() * (Quotation.length - 1));
    document.getElementById('textrotator').innerHTML = Quotation[which];

    setTimeout('rotateEvery(' + sec + ')', sec * 1000);
}