function makeArray(len) {	for (var i = 0; i < len; i++) this[i] = null;this.length = len;}var candy = new makeArray(5);candy[0] = "<img src=\"http://www.chaoskitty.com/grfx/squeet.jpg\" width=\"136\" height=\"99\" border=\"0\" alt=\"chaoskitty.com\">" ;candy[1] = "<img src=\"http://www.chaoskitty.com/grfx/cleese.jpg\" width=\"136\" height=\"99\" border=\"0\" alt=\"chaoskitty.com\">" ;candy[2] = "<img src=\"http://www.chaoskitty.com/grfx/unagi.jpg\" width=\"136\" height=\"99\" border=\"0\" alt=\"chaoskitty.com\">" ;candy[3] = "<img src=\"http://www.chaoskitty.com/grfx/dolff.jpg\" width=\"136\" height=\"99\" border=\"0\" alt=\"chaoskitty.com\">" ;candy[4] = "<img src=\"http://www.chaoskitty.com/grfx/squeet.jpg\" width=\"136\" height=\"99\" border=\"0\" alt=\"chaoskitty.com\">" ;function rand(n) {var now = new Date()var seed = now.getTime() % 0xfffffffseed = (0x015a4e35 * seed) % 0x7fffffff;return (seed >> 16) % n;}