

// 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.

ideas = new makeArray(9);
ideas[0] = "\"The results have been extraordinary, it\'s changing the nature of our business.\"</p><p class=\"attribution\"> -- Lou Barnes, Partner, Boulder West Financial Services </p>";
ideas[1] = "\"The site Total Site developed for us does a great job of delivering useful information that people can really use. It\'s attractive, easy to navigate and most importantly, very informative.\"</p><p class=\"attribution\"> -- Bill Reynolds, President, The W. W. Reynolds Companies</p>";
ideas[2] = "\"I also like the way they\'ve approached the whole concept, looking to create a specific, substantial and lasting site which meets the objectives of this company rather than just an instant novelty item.\"</p><p class=\"attribution\"> -- Gordon Van Dusen, VP Business Development, Myogen, Inc.</p>";
ideas[3] = "\"One order I can trace directly to our web site was large enough to pay for the site.\"</p><p class=\"attribution\"> -- Dennis Doran, VP Marketing, Cart Mart, Inc. </p>";
ideas[4] = "\"We found them very cooperative and responsive, and very sensitive to what we wanted to communicate in our Web site.\"</p><p class=\"attribution\"> -- Gordon Van Dusen, VP Business Development, Myogen, Inc.</p>";
ideas[5] = "\"Unlike most internet companies, Total Site actually does what they say they're going to do.\"</p><p class=\"attribution\"> -- Rick Patch, Partner, Sequel Venture Partners</p>";
ideas[6] = "\"It\'s a large site which we offer as a free resource to the public so they can more easily get all the information they need. It\'s helped us establish competence and our identity.\"</p><p class=\"attribution\"> -- Lou Barnes, Partner, Boulder West Financial Services</p>";
ideas[7] = "\"Total Site provided us with the Internet presence we were aiming for quickly, easily and cost-effectively.\"</p><p class=\"attribution\"> -- Steve Schutt, President, Knowledge Incorporated</p>";
ideas[8] = "\"Total Site did a great job  - and I was delighted to see our boutique investment banking firm ranked above the big boys in the search engines.\"</p><p class=\"attribution\"> -- Mike Franson, Partner, The Wallach Company</p>";


// The random number generator.

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