var quoteArray = new Array();
var arrIdx = 0;
quoteArray[arrIdx++] = new Array("<a href='/about/articles-and-news/press/pr_2011_02_22.html'>Awarded: CRN Channel Chief for 2011</a><br><br>CRN honors Terry Cunningham, i365’s president, for accomplishments with dealer channel.<img src='/assets/images/awards/crn_channelchiefs-small.jpg' vAlign=top style='float:right'>","/about/articles-and-news/press/pr_2011_02_22.html");
quoteArray[arrIdx++] = new Array("<a href='http://pages.i365.com/30-day-free-trial.html'>Try EVault® for Free</a> <br><br> This limited-time offer includes an incredible price (well, free) on an exceptional product. You literally have nothing to lose. And everything to save....","http://pages.i365.com/30-day-free-trial.html");
quoteArray[arrIdx++] = new Array("<a href='http://pages.i365.com/WebinarReplayForresterMicrosoftandi365onTheCloudHybridEnvironmentsandDataProtection.html?source=Web&SourceDetail=home'> Download “The Cloud, Hybrid Environments, and Data Protection,” an On-Demand Forrester-Microsoft Webinar. </a> <br><br> For IT pros who protect data on Microsoft and non-Microsoft  platforms.","http://pages.i365.com/WebinarReplayForresterMicrosoftandi365onTheCloudHybridEnvironmentsandDataProtection.html?source=Web&SourceDetail=home");
quoteArray[arrIdx++] = new Array("<a href='/products/cloud-storage-services/laptop-backup/endpoint-protection.html'>See New EVault&reg; Endpoint Protection: Desktop/Laptop Backup and Data Security</a><br /><br />Lock down data for lost or stolen PCs. Users get worry-free backup and IT gets more oversight, less overhead.","/products/cloud-storage-services/laptop-backup/endpoint-protection.html");

function getNewQuote() {
  if (arrIdx >= quoteArray.length) {
    arrIdx = 0;
  }
  $('#quoteHolder').html(quoteArray[arrIdx][0]);
  $('#quoteLink').attr('href',quoteArray[arrIdx++][1]);
}
function showNewQuote() {
  $('#quoteHolder').fadeOut(1000);
  window.setTimeout(getNewQuote,1000);
  $('#quoteHolder').fadeIn(1000);
  window.setTimeout(showNewQuote,10000);
}
$(document).ready(function() {
  arrIdx = 1;
  window.setTimeout(showNewQuote,10000);
})
