<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 9000;
// Duration of crossfade (seconds)
var crossFadeDuration = 0;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = '/wipublic/clients/18/17/home-essence.png'
Pic[1] = '/wipublic/clients/21/23/home-mulcahy.png'
Pic[2] = '/wipublic/clients/18/17/home-bistro-bella-vita.png'
Pic[3] = '/wipublic/clients/17/16/home-divan.png'
Pic[4] = '/wipublic/clients/18/18/home-the-green-well.png'


// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.ClientSlideShow.style.filter="blendTrans(duration=0)";
document.images.ClientSlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.ClientSlideShow.filters.blendTrans.Apply();
}
document.images.ClientSlideShow.src = preLoad[j].src;
if (document.all) {
document.images.ClientSlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
runSlideShow();
//  End -->