var quoteArray = new Array();
var arrIdx = 0;
quoteArray[arrIdx++] = new Array("<a href='/products/data-backup-software/microsoft-backup-recovery/index.html'>Explore New EVault&reg; for DPM</a><br /><br />We created EVault for DPM especially for Microsoft&reg; System Center customers&mdash;because they live in a cross-platform, cloud-connected world too.","/products/data-backup-software/microsoft-backup-recovery/index.html")
quoteArray[arrIdx++] = new Array("<a href='/assets/videos/cloud-story.html'>2 Brothers. 1 Epic Battle.</a> <br><br>One's on-premise. The other, in the cloud. In this short, live-action video, sparks fly until....","/assets/videos/cloud-story.html");
quoteArray[arrIdx++] = new Array("<a href='http://www.surveymonkey.com/s/J3WBZ2T/www.surveymonkey.com/s/J3WBZ2T'>Assess Your Organization&rsquo;s Disaster Recovery Capabilities—Free!</a><br><br> Learn if your IT organization can handle its own worst-case scenario and, if not, whether an EVault backup and recovery solution might be the best remedy.","http://www.surveymonkey.com/s/J3WBZ2T/www.surveymonkey.com/s/J3WBZ2T");
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");

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);
})