NewImg = new Array ('http://photos.sierrainteractivemls.com/3/mlspics/3_1279124.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1274807_0812500.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1273845.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1271357.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1270710.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1270708.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1270718.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1270715.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1270706.jpg','http://photos.sierrainteractivemls.com/3/mlspics/3_1270714.jpg');
NewCap = new Array ('$409,000
Bedrooms: 4 / Baths: 3
Square Feet: 3700
This beautiful, updated home is situated on a flat .53 acre lot in Wolf Creek subdivision. The warm, inviting kitchen features all new maple ...
View Details','$259,000
Bedrooms: 4 / Baths: 4
Square Feet: 3200
This 4 Bedroom, 3 bath 2 story in Saddlebrook is situated beautifully on a large corner lot. There is a spacious great room with gas fireplace and ...
View Details','$274,000
Bedrooms: 2 / Baths: 3
Square Feet: 2161
You will be amazed at the space in this luxurious 2100 square foot condo in Norton Commons! The first floor features a gorgeous living room w/ gas ...
View Details','$350,000
Bedrooms: 2 / Baths: 2
Square Feet: 1955
This previously-owned home is now for sale and currently being used as our model home! The princeton floorplan offers 1950 square feet all on one ...
View Details','$269,000
Bedrooms: 2 / Baths: 2
Square Feet: 2176
This Camelot (2176 sq. ft.) unit is framed and ready for your finishing touches. The unit is being built on a slab lot with no basement. Features ...
View Details','$259,000
Bedrooms: 2 / Baths: 2
Square Feet: 1955
This Princeton (1955 sq. ft) floor plan is framed and ready for your finishing touches. The unit is being built on a slab lot with no basement. ...
View Details','$379,000
Bedrooms: 3 / Baths: 3
Square Feet: 3176
This beautiful private wooded walkout lot is waiting for a contract to build! Amos Martin Construction is proposing to build a 2176 sq. ft Camelot ...
View Details','$275,000
Bedrooms: 2 / Baths: 2
Square Feet: 1720
This Yorkshire floor plan (1760 sq. ft) is framed and ready for your choice of custom finishes! There are 2 bedrooms and 2 full baths. There is an ...
View Details','$275,000
Bedrooms: 2 / Baths: 2
Square Feet: 1955
This former model unit features nearly 2000 square feet with 2 bedrooms & 2 baths. There is an abundance of maple glazed custom cabinetry and ...
View Details','$299,000
Bedrooms: 2 / Baths: 2
Square Feet: 2176
This Camelot unit (2176 sq. ft.) is framed and ready for your choice of custom finishes! It features 2 Bedrooms & 2 full baths. There is an open ...
View Details');
var preLoad = new Array()
for (i = 0; i < NewImg.length; i++)
{
preLoad[i] = new Image()
preLoad[i].src = NewImg[i]
}
/* Slideshow Functions */
var ImgNum = 0;
var ImgLength = preLoad.length - 1;
var delay = 7000; //Time delay between Slides in milliseconds
var tmpDelay = 10000; // temp delay when user clicks on a photo
var lock = false;
var run;
var autoPlay = false;
var iPlayed = 0;
function chgImg(direction)
{
var oSlideshowPic = document.getElementById('slideshow')
var oSlideshowCap = document.getElementById('slideshowCap')
if (iPlayed > 10)
{
lock = false;
autoPlay = false;
window.clearInterval(run);
}
else
{
if (document.images)
{
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength)
{
ImgNum = 0;
iPlayed = iPlayed + 1
}
if (ImgNum < 0)
{
ImgNum = ImgLength;
}
if (document.all)
{
oSlideshowPic.style.filter = "blendTrans(duration=2)"
oSlideshowPic.style.filter = "blendTrans(duration=crossFadeDuration)"
oSlideshowPic.filters.blendTrans.Apply()
oSlideshowCap.style.filter = "blendTrans(duration=2)"
oSlideshowCap.style.filter = "blendTrans(duration=crossFadeDuration)"
oSlideshowCap.filters.blendTrans.Apply()
}
oSlideshowPic.src = preLoad[ImgNum].src;
oSlideshowCap.innerHTML = NewCap[ImgNum];
if (document.all)
{
oSlideshowPic.filters.blendTrans.Play()
oSlideshowCap.filters.blendTrans.Play()
}
}
}
}
function auto()
{
if (lock == true)
{
lock = false;
autoPlay = false;
window.clearInterval(run);
run = setInterval("auto()", tmpDelay);
}
else if (lock == false)
{
lock = true;
autoPlay = true;
run = setInterval("chgImg(1)", delay);
}
}
function showPicture(whichDir)
{
var oSlideshowPic = document.getElementById('slideshow')
var oSlideshowCap = document.getElementById('slideshowCap')
lock = false;
autoPlay = false;
window.clearInterval(run);
if (whichDir == '+')
{
if (ImgNum == ImgLength)
{
ImgNum = 0
}
else
{
ImgNum = ImgNum + 1
}
}
else
{
if (ImgNum == 0)
{
ImgNum = ImgLength
}
else
{
ImgNum = ImgNum - 1
}
}
if (autoPlay == true) {auto()}
if (document.all)
{
oSlideshowPic.style.filter = "blendTrans(duration=2)"
oSlideshowPic.style.filter = "blendTrans(duration=crossFadeDuration)"
oSlideshowPic.filters.blendTrans.Apply()
oSlideshowCap.filter = "blendTrans(duration=2)"
oSlideshowCap.style.filter = "blendTrans(duration=crossFadeDuration)"
oSlideshowCap.filters.blendTrans.Apply()
}
oSlideshowPic.src = preLoad[ImgNum].src;
oSlideshowCap.innerHTML = NewCap[ImgNum];
if (document.all)
{
oSlideshowPic.filters.blendTrans.Play()
oSlideshowCap.filters.blendTrans.Play()
}
}
auto();
/*Output HTML - Escape any double quotes used */
document.write("