// JavaScript Document

function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(5);
ideas[0] = "&quot;Rockets games provide the perfect client entertainment experience…we've been very happy with our sponsorship.&quot; <br><br>Bill Herrington<br>South Texas Commercial Chairman<br>Capital One Bank";
ideas[1] = "&quot;Konica Minolta's long term partnership with the Rockets has been a win win from day one.  The value of this relationship for our internal and external customers, is beyond measure.&quot;<br><br>Donna Davis<br>Branch General Manager<br>Konica Minolta Business Solutions"
ideas[2] = "&quot;I am an avid fan of the Houston Rockets and our company sponsorship has been invaluable.  The benefits are too numerous to mention but certainly fostering business relationships and improving employee relations are at the top.  Additionally, the Rockets organization has been a pleasure to work with over the years.  For the money, this has been an investment that has paid big dividends.&quot;<br><br>Brian Binash<br>Director/Partner<br>Wilshire Homes"
ideas[3] = "&quot;BMC Software is proud of its relationship with the Houston Rockets.  Both organizations are active members of the Houston community and our partnership allows us to give back to the community while leveraging the Rockets brand and the visibility it has in raising awareness of important local needs and issues.&quot;<br><br>Dan D'Armond<br>Director, Community and Government Relations<br>BMC Software"
ideas[4] = "&quot;One of the most impressive things about the Rockets organization is that they treat their fans and Corporate Partners like family.  That’s important to me because my business is family-owned and operated and we treat our guests that way.&quot;<br><br>Dimitri Fetokakis<br>Owner<br>Niko Niko’s Greek & American Café"



// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff