// JavaScript Document

var Quote=new Array()

Quote[0] = "<DIV CLASS=\"quote\"><P CLASS=\"title3\">Customer Testimonial:</P>&ldquo;Unrecoverable errors at our all-Macintosh multi-room audio post production facility convinced me that I needed an enterprise strength backup solution. BRU is a no-nonsense, bullet-proof solution that is proving to do one thing, and does it flawlessly; protect the creative assets. Frankly, BRU allows me to sleep better at night!&rdquo;<DIV CLASS=\"quote_signature\">John Fippin, Owner/Chief Engineer<BR>Magnetic Studios, member of AES and NARAS</DIV></DIV>";

Quote[1] = "<DIV CLASS=\"quote\"><P CLASS=\"title3\">Customer Testimonial:</P>&ldquo;We recently introduced BRU to our organization's infrastructure.  At first I was skeptical given that we already had an enterprise-grade backup solution in place, and I was definitely in the mindset that if something is more expensive, then it must be better.  I was happily surprised, however, when it turned out that BRU was both easier to set up and offered all the same functionality we required at a fraction of the cost.  We'd have saved a lot of money had we just gone with BRU in the first place.&rdquo;<DIV CLASS=\"quote_signature\">Przemek Wozniak<BR>Gap Adventures</DIV></DIV>";

var Q = Quote.length;
var whichQuote=Math.round(Math.random()*(Q-1));
function showQuote(){document.write(Quote[whichQuote]);}
showQuote();

