<!--


// Set up the image files to be used.
var theImages = new Array()
var theImagesAlt = new Array()// do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/picrotate/pic01.jpg'
theImages[1] = 'images/picrotate/pic02.jpg'
theImages[2] = 'images/picrotate/pic03.jpg'
theImages[3] = 'images/picrotate/pic04.jpg'
theImages[4] = 'images/picrotate/pic05.jpg'
theImages[5] = 'images/picrotate/pic06.jpg'
theImages[6] = 'images/picrotate/pic07.jpg'



theImagesAlt[0] = 'Kitchen Concepts'
theImagesAlt[1] = 'Remodel'
theImagesAlt[2] = 'New Kitchen'
theImagesAlt[3] = 'Kitchens'
theImagesAlt[4] = 'Remodeled Kitchen'
theImagesAlt[5] = 'Sinks'
theImagesAlt[6] = 'Stove'


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" alt="'+theImagesAlt[whichImage]+'">');
}

//-->

<!--


// Set up the image files to be used.
var theImagesi = new Array()
var theImagesAlti = new Array()// do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImagesi[0] = 'images/picrotate/pic01i.jpg'
theImagesi[1] = 'images/picrotate/pic02i.jpg'
theImagesi[2] = 'images/picrotate/pic03i.jpg'
theImagesi[3] = 'images/picrotate/pic04i.jpg'
theImagesi[4] = 'images/picrotate/pic05i.jpg'
theImagesi[5] = 'images/picrotate/pic06i.jpg'
theImagesi[6] = 'images/picrotate/pic07i.jpg'



theImagesAlti[0] = 'Kitchen Concepts'
theImagesAlti[1] = 'Remodel'
theImagesAlti[2] = 'New Kitchen'
theImagesAlti[3] = 'Kitchens'
theImagesAlti[4] = 'Remodeled Kitchen'
theImagesAlti[5] = 'Sinks'
theImagesAlti[6] = 'Stove'


// ======================================
// do not change anything below this line
// ======================================

var ji = 0
var pi = theImagesi.length;

var preBufferi = new Array()
for (ii = 0; ii < pi; ii++){
   preBufferi[ii] = new Image()
   preBufferi[ii].src = theImagesi[ii]
}

var whichImagei = Math.round(Math.random()*(pi-1));
var image1= whichImagei+1
if (image1 > 6){
	image1 = 0;
}

var image2= whichImagei+2
if (image2 > 6){
	image2 = 1;
}
function showImagei(){
document.write('<img src="'+theImagesi[whichImagei]+'" alt="'+theImagesAlti[whichImagei]+'">');
}
function showImagei2(){
	
document.write('<img src="'+theImagesi[image1]+'" alt="'+theImagesAlti[whichImagei+1]+'">');
}
function showImagei3(){


	document.write('<img src="'+theImagesi[image2]+'" alt="'+theImagesAlti[whichImagei+2]+'">');
}

//-->