// JavaScript Document
	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.

pmd = new makeArray(18);
pmd[0] = "<br>People love to give me money!";
pmd[1] = "<br>I am noticed and notable everywhere I go!";
pmd[2] = "<br>I am rich and wonderful.";
pmd[3] = "<br>People love to give me money!";
pmd[4] = "<br>I am now earning a great big income doing what satisfies me.";
pmd[5] = "<br>Something wonderful is happening to me today — I can feel it!";
pmd[6] = "<br>All my bills are paid up in full and I still have all this money.";
pmd[7] = "<br>My affirmations work for me, whether I believe they will or not. (This is for the skeptics among you.)";
pmd[8] = "<br>People love to give me money!";
pmd[9] = "<br>A lot more money is coming into my life. I deserve it and will use it for my good and others.";
pmd[10] = "<br>All my clients praise me and pay me!";
pmd[11] = "<br>I am a money magnet!";
pmd[12] = "<br>People love to give me money!";
pmd[13] = "<br>Money comes to me easily and effortlessly, waking and sleeping.";
pmd[14] = "<br>I am now highly pleasing to myself in other people's presence.";
pmd[15] = "<br>I walk, talk, look, act, think and am rich!";
pmd[16] = "<br>I am a winner — I win often, and I win big!";
pmd[17] = "<br>I now receive large sums of money, just for being me!";
pmd[18] = "<br>People love to give me money!";
	// The random number generator.

	function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}
        
	var now = new Date()
	var seed = now.getTime() % 0xffffffff
