<!-- Begin

// Set slideShowSpeed (milliseconds)

var slideShowSpeed3 = 2000;

// Duration of crossfade (seconds)

var crossFadeDuration3 = 6

// Specify the image files

var Pic3 = new Array();

// to add more images, just continue

// the pattern, adding to the array below



Pic3[0] = '_images/FSBO_KINGS/3712_Oakmount/front_.jpg'

Pic3[1] = '_images/FSBO_KINGS/3712_Oakmount/livingroom_.jpg'

Pic3[2] = '_images/FSBO_KINGS/3712_Oakmount/bedroom_.jpg'

// do not edit anything below this line

var t3;

var j3 = 0;

var p3 = Pic3.length;

var preLoad3 = new Array();

for (i3 = 0; i3 < p3; i3++) {

preLoad3[i3] = new Image();

preLoad3[i3].src = Pic3[i3];

}

function runSlideShowMagnificientHome() {

if (document.all) {

document.images.SlideShowMagnificentHome.style.filter="blendTrans(duration=2)";

document.images.SlideShowMagnificentHome.style.filter="blendTrans(duration=crossFadeDuration3)";

document.images.SlideShowMagnificentHome.filters.blendTrans.Apply();

}

document.images.SlideShowMagnificentHome.src = preLoad3[j3].src;

if (document.all) {

document.images.SlideShowMagnificentHome.filters.blendTrans.Play();

}

j3 = j3 + 1;

if (j3 > (p3 - 1)) j3 = 0;

t3 = setTimeout('runSlideShowMagnificientHome()', slideShowSpeed3);

}

//  End -->














