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(1);
ideas[0] = "Invio Hosting LLC has been providing our company with the resources we need since 2006. In that time we have only had to contact them once for a minor support issue. I would recommened these guys to anyone that is looking for a quality web hosting company.<br><b>- Kragersoft</b>";
ideas[1] = "I have used several different hosts large and small and I have to say this has been the best. The best service, great features, and reliability has never met such low prices. I'll be moving all my sites to atec for good.<br><b>- Jake .G</b>"
ideas[2] = "Amazing, Amazing, Amazing. I have never seen such a great webhost, Moving from Site5 to aTec has been the best move so far. I hope to have all my sites transfered over very soon. I am very please with the support & uptime.<br><b>- Jennifer .D</b>"
ideas[3] = "Sean has been wonderful, I purchased a domain and webhosting via his service and we have not had anything but success. Our sites are active and our services have grown tremendously over the last year, I am very happy with the support as it is always quick and well answered. Thanks Sean. <br><b>- David .C</b>"
ideas[4] = "I expect as we grow AtecHosting will be able to provide us with the right solution to keep our business critical systems online 24 hours 7 days a week as they already have done a great job. Thanks Sean, James and Technical Support Team. <br><b>- Joshua .H</b>"


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