// JavaScript Document

<!-- Begin
// Set up the image files to be used.
var theLeftImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theLeftImages[0] = 'http://famecoretail.com/images/storeleft123/L001.gif'
theLeftImages[1] = 'http://famecoretail.com/images/storeleft123/L002.gif'
theLeftImages[2] = 'http://famecoretail.com/images/storeleft123/L003.gif'
theLeftImages[3] = 'http://famecoretail.com/images/storeleft123/L004.gif'
theLeftImages[4] = 'http://famecoretail.com/images/storeleft123/L005.gif'
theLeftImages[5] = 'http://famecoretail.com/images/storeleft123/L006.gif'

// do not edit anything below this line

var j = 0
var p = theLeftImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theLeftImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showLeftImage(){
document.write('<img src="'+theLeftImages[whichImage]+'" WIdth="246" Height="109">');
}

//  End -->

<!-- Begin
// Set up the image files to be used.
var theRightImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theRightImages[0] = 'http://famecoretail.com/images/storeright123/R001.gif'
theRightImages[1] = 'http://famecoretail.com/images/storeright123/R002.gif'
theRightImages[2] = 'http://famecoretail.com/images/storeright123/R003.gif'
theRightImages[3] = 'http://famecoretail.com/images/storeright123/R004.gif'

// do not edit anything below this line

var j = 0
var p = theRightImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theRightImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showRightImage(){
document.write('<img src="'+theRightImages[whichImage]+'" WIdth="246" Height="109">');
}

//  End -->
