	// 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(5);
	ideas[0] = "<q>Even though we have an extensive and aggressive purchasing effort including our utilities, they saved us substantial money on our utilities (both in arrears and going forward).<br>I recommend giving them a try.</q>"
	ideas[1] = "<q>The best news is - you don&#39;t pay them a dime unless they save you money.</q>"
	ideas[2] = "<q>In the beginning of Tenurgy's analysis, a water/sewer billing error was identified. This oversight led to a refund in excess of $80,000. We were flabbergasted!</q>"
	ideas[3] = "<q>I have been extremely impressed with the number and quality of your contacts within the telecom and utility industries.</q>"
	ideas[4] = "<q>As an added benefit, Tenurgy continues to monitor our utility bills on a monthly basis and make additional savings recommendations.</q>"

	// The random number generator.

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