// 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/photo1.jpg width=350 height=114 alt='Town Square' />";
c[1] = "<img src=../media/photo2.jpg width=350 height=114 alt='Stores' />";
c[2] = "<img src=../media/photo3.jpg width=350 height=114 alt='I-57' />";
c[3] = "<img src=../media/photo4.jpg width=350 height=114 alt='Franklin Hospital' />";
c[4] = "<img src=../media/photo5.jpg width=350 height=114 alt='Industrial Park' />";
c[5] = "<img src=../media/photo6.jpg width=350 height=114 alt='Mariah' />";
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;return (seed >> 16) % n;
}
var now = new Date()

var seed = now.getTime() % 0xffffffff

