var quotes = Array(
    Array("&quot;The Sandler CRM Framework has given my sales team the ability to qualify, analyze and track sales opportunities much more consistently and efficiently than we ever have before. What a great enhancer to our use of the Sandler System!&quot;",
        "- Robert Ditsch, CEO of Harvest Productions"),
    Array("&quot;I was pleasantly surprised at how fast PSC got us up and running. We signed up for Microsoft CRM On-line through the web site and within a few days we were using it and the Sandler framework in our daily business. It couldn’t have been more painless.&quot;",
        "- Vice President of Sales, Midwest-based Construction Company"),
    Array("&quot;The Sandler Training® Framework for Microsoft Dynamics CRM system provides sales people and sales managers with a great tool to close more deals.&quot;",
        "- Dick Brooks, Sandler Training, Overland Park, KS"),
    Array("&quot;The process of purchasing Microsoft CRM and the installation of the Sandler Training® Framework went very smoothly.  The support services we have received from both PSC and Microsoft have been excellent&quot;.",
        "- Kevin Donahue, VP of Sales, National Fish & Seafood, Gloucester, MA"),
    Array("&quot;The Sandler Training® Framework enhances the trainer – client relationship. It's a great tool to offer Sandler clients.&quot;",
        "- Kevin Hallenbeck, Sandler Training, Manchester, NH")
);

var quotenum = 0;

$(function() {
    fadequote();
    setInterval('fadequote()', 10500);
});

function fadequote() {
    $('#rotatequote').fadeOut(500, setquote);
    $('#rotatequote').fadeIn(500);
}

function setquote() {
    $('#rotatequote > blockquote').html(quotes[quotenum][0]);
    $('#rotatequote > div').html(quotes[quotenum][1]);
    quotenum = (quotenum + 1) % quotes.length;
}

