// JavaScript Document

<!--
var theImages = new Array()
theImages[0] = './images/models/model1.jpg'
theImages[1] = './images/models/model2.jpg'
theImages[2] = './images/models/model3.jpg'
theImages[3] = './images/models/model4.jpg'
theImages[4] = './images/models/model5.jpg'
theImages[5] = './images/models/model_spa1.jpg'
theImages[6] = './images/models/model_spa2.jpg'
theImages[7] = './images/models/model_spa3.jpg'
theImages[8] = './images/models/model_spa4.jpg'
theImages[9] = './images/models/model_spa5.jpg'
theImages[10] = './images/models/model_spa6.jpg'

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 width="350" height="385" alt="Sunbear Spa & Salon" border="0" src="'+theImages[whichImage]+'">');
}

//-->
