//<!--
// The Array Function 
function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// This is where the array of text/images/sounds is created.
randomquote = new makeArray(6);
randomquote[0] = '<div class="boxText">&quot;As an experienced webmaster, having used multiple hosting companies through the years, I can honestly say that Needa is a company that I\'m not only comfortable using for all accounts I represent.&quot;<br> Jef Shaffer<br>Webmaster / Art Director<br><i>Web Hosting Customer</i></div><br><div class="quoteCustomer"></div>';
randomquote[1] = '<div class="boxText">&quot; Thanks a million for your quick response. Every time I get a chance to work with you folks on the phone I am reminded why needa.com is simply the best host service company out there.&quot;<br> Paul Janofsky<br><i>Unix Web Hosting Customer</i></div><br><div class="quoteCustomer"></div>';
randomquote[2] = '<div class="boxText">&quot;Based on your great support, I will refer you all to future clients.&quot;<br>David C. Edmunds<br>Brown Insurance Agency</div><br><div class="quoteCustomer"></div>';
randomquote[3] = '<div class="boxText">&quot;I have to tell you that your support is quite amazing, you never fail to come up with an answer for all my questions.&quot;<br>Hassan Lahrech<br>Sync it! Sound Design<br><i>NT Web Hosting Customer</i></div><br><div class="quoteCustomer"></div>';
randomquote[4] = '<div class="boxText">&quot;Thank you for your quick service, expertise, and hard work!&quot;<br>Joe Balazs<br>Chicago Children\'s Museum<br><i>Premium Web Hosting Customer</i></div><br><div class="quoteCustomer"></div>';
randomquote[5] = '<div class="boxText">&quot;That was superior service at lightening speed.&quot;<br>S.Wilkerson<br>ADEK CORP<br><i>Domain Registration Customer</i></div><br><div class="quoteCustomer"></div>';

// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->