var LeftImages = new Array() //Random-loading imagesLeftImages[0] = 'http://www.seamor.com/images/img_index1a.jpg' // replace with names of imagesLeftImages[1] = 'http://www.seamor.com/images/img_index2a.jpg' // replace with names of imagesLeftImages[2] = 'http://www.seamor.com/images/img_index3a.jpg' // replace with names of imagesvar j = 0var p = LeftImages.length;var preBuffer = new Array() for (i = 0; i < p; i++){preBuffer[i] = new Image()preBuffer[i].src = LeftImages[i]}var whichImage = Math.round(Math.random()*(p-1)); function showLeftImage(){    if(whichImage==0){    document.write('<img src="'+LeftImages[whichImage]+'" border=0 width=482 height=155>');    }    else if(whichImage==1){    document.write('<img src="'+LeftImages[whichImage]+'" border=0 width=482 height=155>');    }    else if(whichImage==2){    document.write('<img src="'+LeftImages[whichImage]+'" border=0 width=482 height=155>');    } } var RightImages = new Array() //Random-loading imagesRightImages[0] = 'http://www.seamor.com/images/img_index1b.jpg' // replace with names of imagesRightImages[1] = 'http://www.seamor.com/images/img_index2b.jpg' // replace with names of imagesRightImages[2] = 'http://www.seamor.com/images/img_index3b.jpg' // replace with names of images var j = 0var p = RightImages.length;var preBuffer = new Array() for (i = 0; i < p; i++){preBuffer[i] = new Image()preBuffer[i].src = RightImages[i]}var whichImage = Math.round(Math.random()*(p-1)); function showRightImage(){    if(whichImage==0){    document.write('<img src="'+RightImages[whichImage]+'" border=0 width=150 height=231>');    }    else if(whichImage==1){    document.write('<img src="'+RightImages[whichImage]+'" border=0 width=150 height=231>');    }    else if(whichImage==2){    document.write('<img src="'+RightImages[whichImage]+'" border=0 width=150 height=231>');    } }