//<!--
// 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.
donate = new makeArray(7);
donate[0] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/1.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';
donate[1] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/2.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';
donate[2] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/3.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';
donate[3] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/4.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';
donate[4] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/5.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';
donate[5] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/6.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';
donate[6] = '<a href="https://www.bgca.org/donate/form.asp"><img src="images/home_donate/7.gif" width="309" height="50" alt="Make a Difference in a Kid\'s Life. Donate." border="0"></a>';

// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->