// The Array Functionfunction makeArray(len) {    for (var i = 0; i < len; i++)this[i] = null;this.length = len;}c = new makeArray(6);c[0] = "<img src=media/front-photo1.jpg width=223 height=185 alt='Product Picture'>";c[1] = "<img src=media/front-photo2.jpg width=223 height=185 alt='Product Picture'>";c[2] = "<img src=media/front-photo3.jpg width=223 height=185 alt='Product Picture'>";c[3] = "<img src=media/front-photo4.jpg width=223 height=185 alt='Product Picture'>";c[4] = "<img src=media/front-photo5.jpg width=223 height=185 alt='Product Picture'>";c[5] = "<img src=media/front-photo6.jpg width=223 height=185 alt='Product Picture'>";// Random Randomfunction rand(n) {seed = (0x015a4e35 * seed) % 0x7fffffff;return (seed >> 16) % n;}var now = new Date()var seed = now.getTime() % 0xffffffff