
<!--
introductionon = new Image;
introductionon.src = "images/button_introduction_on.jpg"; 

introductionoff = new Image;
introductionoff.src = "images/button_introduction.jpg";

modelson = new Image;
modelson.src = "images/button_homes_on.jpg"; 

modelsoff = new Image;
modelsoff.src = "images/button_homes.jpg";

platon = new Image;
platon.src = "images/button_lots_on.jpg"; 

platoff = new Image;
platoff.src = "images/button_lots.jpg";

featureson = new Image;
featureson.src = "images/button_features_on.jpg"; 

featuresoff = new Image;
featuresoff.src = "images/button_features.jpg";

financingon = new Image;
financingon.src = "images/button_financing_on.jpg"; 

financingoff = new Image;
financingoff.src = "images/button_financing.jpg";

exclusiveon = new Image;
exclusiveon.src = "images/button_exclusively_yours_on.jpg"; 

exclusiveoff = new Image;
exclusiveoff.src = "images/button_exclusively_yours.jpg";

scheduleon = new Image;
scheduleon.src = "images/button_schedule_on.jpg"; 

scheduleoff = new Image;
scheduleoff.src = "images/button_schedule.jpg";

landscapingon = new Image;
landscapingon.src = "images/button_landscaping_on.jpg"; 

landscapingoff = new Image;
landscapingoff.src = "images/button_landscaping.jpg";

locationon = new Image;
locationon.src = "images/button_location_on.jpg"; 

locationoff = new Image;
locationoff.src = "images/button_location.jpg";

faqon = new Image;
faqon.src = "images/button_faq_on.jpg"; 

faqoff = new Image;
faqoff.src = "images/button_faq.jpg";


// FUNCTIONS
function
img_act(imgName) {
imgon = eval(imgName + "on.src");
document [imgName].src = imgon;
}
function
img_inact(imgName) {
imgoff = eval(imgName + "off.src");
document [imgName].src = imgoff;
}

// -->


// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[2] = 'images/broadmoor_tn.jpg'
Pic[1] = 'images/dunloring_tn.jpg'
Pic[0] = 'images/avebury_tn.jpg'
Pic[3] = 'images/burford_tn.jpg'
Pic[4] = 'images/dunbrook_tn.jpg'
Pic[5] = 'images/stanway_tn.jpg'
Pic[6] = 'images/westbury_tn.jpg'
Pic[7] = 'images/grange_tn.jpg'

// 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.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->