//<!--
// 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.
art = new makeArray(6);
art[0] = '<img src="../images/artgallery_1.gif" width="154" height="216" alt="" border="0">';
art[1] = '<img src="../images/artgallery_2.gif" width="154" height="216" alt="" border="0">';
art[2] = '<img src="../images/artgallery_3.gif" width="154" height="216" alt="" border="0">';
art[3] = '<img src="../images/artgallery_4.gif" width="154" height="216" alt="" border="0">';
art[4] = '<img src="../images/artgallery_5.gif" width="154" height="216" alt="" border="0">';
art[5] = '<img src="../images/artgallery_6.gif" width="154" height="216" alt="" border="0">';
// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->