// The Array Function 

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}
// This is the array of images A. The number of images needs to be set in parens: makeArray(X)

images = new makeArray(2);

// This is image one

images[0] = '<img src="assets/HomePhotos/left-HP-1.jpg" width="360" height="240" border="0" alt="">'

// This is image two

images[1] = '<img src="assets/HomePhotos/left-HP-2.jpg" width="360" height="240" border="0" alt="">'



// This is the array of images B. The number of images needs to be set in parens: makeArray(X)

imagesB = new makeArray(4);

// This is image one

imagesB[0] = '<img src="assets/HomePhotos/right-HP-1.jpg" width="358" height="240" border="0" alt="">'

// This is image two

imagesB[1] = '<img src="assets/HomePhotos/right-HP-2.jpg" width="358" height="240" border="0" alt="">'

// This is image three

imagesB[2] = '<img src="assets/HomePhotos/right-HP-3.jpg" width="358" height="240" border="0" alt="Wilier Cento Uno">'

// The random number generator.

imagesB[3] = '<img src="assets/HomePhotos/right-HP-4.jpg" width="358" height="240" border="0" alt="Cyfac Gothica Detail">'

// The random number generator.


function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff
