//<!--
// 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.
findaclub = new makeArray(2);
findaclub[0] = '<a href="clubs/"><img src="images/newhome/find_a_club.gif" width="202" height="115" alt="Find a Club Near You." border="0"></a>';
findaclub[1] = '<a href="clubs/"><img src="images/newhome/find_a_club2.gif" width="202" height="115" alt="Find a Club Near You." 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
//-->