﻿var quotations = new Array()
quotations[0] = "<span class=\"quoteStart\">&ldquo;</span><br />I depend on [DSPI] to maintain our network. The staff creatively handles any issues.<br /><span class=\"quoteEnd\">&rdquo; </span><cite class=\"contributor\">~ Kathie Brockie,<br />Ando &amp; Aston Physical Therapy</cite>"
quotations[1] = "<span class=\"quoteStart\">&ldquo;</span><br />We put the VSS in &amp; one week later one of our servers crashed. The standby server was [up] in a &frac12; hour &amp; we kept working as normal. Incredible!<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Matt Haese,<br />North Love Baptist Church</cite>"
quotations[2] = "<span class=\"quoteStart\">&ldquo;</span><br />Your team &amp; the VSS came through – you had us quickly up &amp; running and we didn&#39;t lose any data. Thank you.<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Erik Szpyra,<br />Auto 7</cite>"
quotations[3] = "<span class=\"quoteStart\">&ldquo;</span><br />We have witnessed [DSPI's] integrity, customer service skills &amp; ability to stay ahead of our needs.<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Lori Preece,<br />Jeffrey H. Katz, D.P.M.</cite>"
quotations[4] = "<span class=\"quoteStart\">&ldquo;</span><br />You guys are life savers! I highly recommend your services.<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Egon Vandenburg,<br />Century Management Inc.</cite>"
quotations[5] = "<span class=\"quoteStart\">&ldquo;</span><br />When our server crashed y&#39;all were all over it &amp; stayed until it was fixed! You went above &amp; beyond &amp; we will not forget it!<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Jim Cottrell<br />Century Regional Health Care</cite>"
quotations[6] = "<span class=\"quoteStart\">&ldquo;</span><br />We are very happy. I would recommend DSPI to any company in need of IT services.<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">David J. Ward,<br />Go Rhino</cite>"
quotations[7] = "<span class=\"quoteStart\">&ldquo;</span><br />DSPI&#39;s prompt &amp; reliable service is outstanding. We&#39;ve recommended them to many of our clients.<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Tanya Mongelli,<br />Acentec, Inc.</cite>"
quotations[8] = "<span class=\"quoteStart\">&ldquo;</span><br />Thank you for the great job you did in repairing my computer. It responds faster &amp; is easier to work with now.<span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Marshall Soslavsky,<br />Orange, CA</cite>"
quotations[9] = "<span class=\"quoteStart\">&ldquo;</span><br />Through DSPI's guidance we have been able to visit 20% more patients than we have in the past.<br /><span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Pat Pollock,<br />Apple Home Healthcare</cite>"
quotations[10] = "<span class=\"quoteStart\">&ldquo;</span><br />You have been proactive, &amp; are always looking out for our best interests. You are a trusted resource.<br /><span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Jeff Welsh,<br />Berger Schatz</cite>"
quotations[11] = "<span class=\"quoteStart\">&ldquo;</span><br />DSPI always responded promptly &amp; sent us very qualified staff who stayed until we were running again.<br /><span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Marvin Einhorn,<br />Medi-Systems</cite>"
quotations[12] = "<span class=\"quoteStart\">&ldquo;</span><br />DSPI helped us save thousands of dollars this year.<br /><span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Mrs. Marnie Luken,<br />Northwest Neurology</cite>"
quotations[13] = "<span class=\"quoteStart\">&ldquo;</span><br />We moved locations &amp; it went very smoothly, due to proper planning &amp; multiple pre-move meetings.<br /><span class=\"quoteEnd\">&rdquo;</span><cite class=\"contributor\">Pat Munro,<br />PSGC</cite>"

function display() {
    a = Math.floor(Math.random() * quotations.length);
    document.getElementById('sideTestimonials').innerHTML = quotations[a];
    setTimeout("display()", 18000);
}