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

ideas = new makeArray(4);
ideas[0] = "<i>Robert says</i>,<br /> ''I currently co-own a site on your server and I've never had a better host. Very little downtime, and the help I've received is absolutely perfect and quick. Nicest staff I've ever talked to, and I can't think of a single aspect of your hosting that i don't like. I hope that you continue to grow and make a name for yourself as one of the best web hosts out there. Great Job!''"
ideas[1] = "<i>Scott says</i>,<br /> ''I can't thank Climbing Host enough for the help that they have provided in with hosting, with setting up add-on domains and with all of the other perks we as customers get! I run three websites off of my shared hosting plans. They all have great response time. Thanks guys! I would recommend this host to anyone and everyone - in fact I do all of the time!''"
ideas[2] = "<i>Foster says</i>,<br /> ''I have been with several different hosts and so far ClimbingHost is the best I have found! The control panel (ftp server) is set up very nicely and organized. The staff is very helpful and quick to respond to a problem. I am very happy with ClimbingHost and wouldn't trade them with any other host! I recommend this host to anyone and everyone!''"
ideas[3] = "<i>HarrisonW says</i>,<br /> ''My experience here at Climbing Host has been nothing but over-satisfactory! I have had many hosts, and even the big companies such as Godaddy haven't been as good as Climbing Host. Climbing Host has a guaranteed 99.9% uptime or your money back.''"


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