

NewImg = new Array ('http://www.idxcentral.com/images/mls/sltbor/respix/115323_n.jpg','http://www.idxcentral.com/images/mls/sltbor/respix/116247_n.jpg','http://www.idxcentral.com/images/mls/sltbor/respix/114915_n.jpg','http://www.idxcentral.com/images/mls/sltbor/respix/116463_n.jpg','http://www.idxcentral.com/images/mls/sltbor/respix/116130_n.jpg');


NewCap = new Array ('<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="black"><b>$95,000</b><br><b>Bedrooms</b>: 1<br><b>Baths</b>: 2.000<br><b>Square Feet</b>: 757<br>Enjoy the luxury of 13 weeks of carefree living at the ...<br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"><br><a href="http://www.idxcentral.com/sltbor/idxsearch.cfm?idxid=tlaym&pg=profile&mls=115323" target="_top"><b>View Details</b></a><br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"></font>','<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="black"><b>$149,500</b><br><b>Bedrooms</b>: 2<br><b>Baths</b>: 1.000<br><b>Square Feet</b>: 812<br>Beautifully remodeled corner unit with filtered Lake and ...<br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"><br><a href="http://www.idxcentral.com/sltbor/idxsearch.cfm?idxid=tlaym&pg=profile&mls=116247" target="_top"><b>View Details</b></a><br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"></font>','<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="black"><b>$199,000</b><br><b>Bedrooms</b>: n/a<br><b>Baths</b>: 1.000<br><b>Square Feet</b>: 448<br>Reservations are up at Lakeland Village Beach & Mountain ...<br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"><br><a href="http://www.idxcentral.com/sltbor/idxsearch.cfm?idxid=tlaym&pg=profile&mls=114915" target="_top"><b>View Details</b></a><br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"></font>','<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="black"><b>$210,000</b><br><b>Bedrooms</b>: 2<br><b>Baths</b>: 1.000<br><b>Square Feet</b>: 816<br>Days 1-7: Offers will not be reviewed. Days 8-12: Offers ...<br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"><br><a href="http://www.idxcentral.com/sltbor/idxsearch.cfm?idxid=tlaym&pg=profile&mls=116463" target="_top"><b>View Details</b></a><br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"></font>','<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="black"><b>$229,900</b><br><b>Bedrooms</b>: 2<br><b>Baths</b>: 1.000<br><b>Square Feet</b>: 864<br>Plenty of Sunshine in Meyers the area.  Well maintained ...<br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"><br><a href="http://www.idxcentral.com/sltbor/idxsearch.cfm?idxid=tlaym&pg=profile&mls=116130" target="_top"><b>View Details</b></a><br><img src="http://www.idxcentral.com/images/spacer.gif" width="1" height="3"></font>');
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("<table width='100%' cellpadding='0' cellspacing='0'><tr><td align='center'><img width='185' height='138' border=0 id='slideshow' name='slideshow' src='http://www.idxcentral.com/images/mls/sltbor/respix/115323_n.jpg'></td></tr><tr><td bgcolor=''><img src='http://www.idxcentral.com/images/spacer.gif' width='1' height='3'></td></tr><tr><td align='center' bgcolor=''><font size='1' face='Verdana, Arial, Helvetica, sans-serif' color='black'>&laquo;&nbsp;&nbsp;<a onclick='showPicture(\"-\"); return false' href=''>back</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a onclick='showPicture(\"+\"); return false' href=''>next</a>&nbsp;&nbsp;&raquo;</font></td></tr><tr><td bgcolor=''><img src='http://www.idxcentral.com/images/spacer.gif' width='1' height='3'></td></tr><tr><td><table width='100%' cellpadding='2' cellspacing='0'><tr><td align='left' bgcolor='' valign='top'><div id='slideshowCap' name='slideshowCap'><font size='1' face='Verdana, Arial, Helvetica, sans-serif' color='black'><b>$95,000</b><br><b>Bedrooms</b>: 1<br><b>Baths</b>: 2.000<br><b>Square Feet</b>: 757<br>Enjoy the luxury of 13 weeks of carefree living at the ...<br><img src='http://www.idxcentral.com/images/spacer.gif' width='1' height='3'><br><a href='http://www.idxcentral.com/sltbor/idxsearch.cfm?idxid=tlaym&pg=profile&mls=115323' target='_top'><b>View Details</b></a><br><img src='http://www.idxcentral.com/images/spacer.gif' width='1' height='3'></font></div></td></tr></table></td></tr></table>");
