var themiddle = new Array()

//Random-loading images
themiddle[0] = '/images/random/interior-image/accents-1.jpg'
themiddle[1] = '/images/random/interior-image/accents-2.jpg'
themiddle[2] = '/images/random/interior-image/ceiling-1.jpg'
themiddle[3] = '/images/random/interior-image/ceiling-2.jpg'
themiddle[4] = '/images/random/interior-image/ceiling-3.jpg'
themiddle[5] = '/images/random/interior-image/ceiling-4.jpg'
themiddle[6] = '/images/random/interior-image/fan-1.jpg'
themiddle[7] = '/images/random/interior-image/fan-2.jpg'
themiddle[8] = '/images/random/interior-image/fan-3.jpg'
themiddle[9] = '/images/random/interior-image/lamps-1.jpg'
themiddle[10] = '/images/random/interior-image/lamps-2.jpg'
themiddle[11] = '/images/random/interior-image/outdoor-1.jpg'
themiddle[12] = '/images/random/interior-image/outdoor-2.jpg'
themiddle[13] = '/images/random/interior-image/outdoor-3.jpg'
themiddle[14] = '/images/random/interior-image/outdoor-4.jpg'
themiddle[15] = '/images/random/interior-image/wall-1.jpg'
themiddle[16] = '/images/random/interior-image/wall-2.jpg'

var j = 0
var p = themiddle.length;
var preBuff = new Array()

for (i = 0; i < p; i++){
preBuff[i] = new Image()
preBuff[i].src = themiddle[i]
}
var whichmiddle = Math.round(Math.random()*(p-1));

function showmiddle(){

document.write('<img src="'+themiddle[whichmiddle]+'" border=0 width=695 height=220 alt="Home Lighting Today">');

}

