//<!--
// 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.
quote = new makeArray(5);
quote[0] = '<img src="../images/quotebox/1.gif" width="150" height="147" alt="">';
quote[1] = '<img src="../images/quotebox/2.gif" width="150" height="147" alt="">';
quote[2] = '<img src="../images/quotebox/3.gif" width="150" height="147" alt="">';
quote[3] = '<img src="../images/quotebox/4.gif" width="150" height="147" alt="">';
quote[4] = '<img src="../images/quotebox/5.gif" width="150" height="147" alt="">';
// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->
