// 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.

ideas = new makeArray(3);
ideas[0] = "<img src='http://www469.pair.com/pmmweb07/images/rotate/image1.jpg' width='598' height='148' alt='' border='0'>";
ideas[1] = "<img src='http://www469.pair.com/pmmweb07/images/rotate/image2.jpg' width='598' height='148' alt='' border='0'>";
ideas[2] = "<img src='http://www469.pair.com/pmmweb07/images/rotate/image3.jpg' width='598' height='148' alt='' border='0'>";

// The random number generator.

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

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


