﻿var quotes = new Array();

quotes[quotes.length] = {quote: 'Marzik delivered a robust, vrtualized storage architecture for us while protecting our existing investments.',
author: '~ CIO, Federal Civilian Agency'};

quotes[quotes.length] = {quote: 'Marzik has earned my trust and respect because of their commitment to helping us accomplish our mission.',
author: '~ CTO, DOD Agency'};




function getTestimonial() {
    var currIndex = Math.floor(Math.random() * (quotes.length));
    var output = '<img src="images/quotebegin.gif" alt="begin quote" width="24" height="20" hspace="0" border="0" align="left" style="padding-right: 10px; margin-left: -15px; margin-bottom: 58px;">' + quotes[currIndex].quote;   
    output += '&nbsp;<img src="images/quoteend.gif" alt="end quote" width="24" height="20" hspace="0" border="0" align="right">';
    output += '<p style="color: #784C00; text-align: right;">' + quotes[currIndex].author + '</p>';
    return output;
    }
    

   
