	// IDX Broker Slideshow version 1.0
	// Copyright ©2008 All rights reserved.
	// This script exists soley for the purposes of allowing real estate professionals to display
	// their property information easily on their own web site. All other use prohibited.
	
	var c;
	var timeout = 6000;
	var cwi = 0;
	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('a.IDX-ssLinkText, a.IDX-ssLinkText:active, a.IDX-ssLinkText:link, a.IDX-ssLinkText:visited, a.IDX-ssLinkText:hover { font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: normal; font-style: normal;  }');
	document.writeln('#IDX-slideshow { text-align: center; border-width: 2px; border-style: ridge; width: 320px; height: 300px;  }');
	document.writeln('.IDX-image { width: 320px; height: 240px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 8 - 1;

	document.writeln('<div id="IDX-slideshow">');
	document.writeln('<div id="IDX-slideshowImage">');
	document.writeln('<span><a href="" id="IDX-ssImageURL" class="IDX-ssLinkText"><img id="IDX-ssImage" name="ssImage" alt="Slideshow image" border="0"  class="IDX-image" ></a></span>');
	document.writeln('</div>');
	document.writeln('<div id="IDX-priceLine"></div>');
	document.writeln('<div id="IDX-addressLine"></div>');
	document.writeln('<div id="IDX-cszLine"></div>');
	document.writeln('</div>');

	function play()
	{
		urlVar = '<a href="'+properties[cwi][6]+'" class="IDX-ssLinkText">';
		document.images.ssImage.src = preLoad.src;
		document.getElementById('IDX-ssImageURL').href = properties[cwi][6];
		document.getElementById('IDX-priceLine').innerHTML = urlVar+'$'+properties[cwi][0]+'</a>';
		document.getElementById('IDX-addressLine').innerHTML =  urlVar+properties[cwi][1]+'</a>';
		document.getElementById('IDX-cszLine').innerHTML = urlVar+properties[cwi][2]+'</a>';
		preLoad = new Image();
		preLoad.src = properties[next][3];
		update();
		c = setTimeout('play()', timeout)
	} // end play()
	function update()
	{
		cwi = next;
		genNext();
		genPrev();
	}
	function genNext()
	{
		next = cwi + 1;
		if (next >= 8)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 8 - 1;
	} // end genPrev

	var properties = new Array(8);
	properties[0] = new Array('895,000','  ','Vero Beach, FL 32963 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/95/69465.jpg','69465','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=69465&idxID=012');
	properties[1] = new Array('469,900','  ','Vero Beach, FL 32963 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/95/71665.jpg','71665','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=71665&idxID=012');
	properties[2] = new Array('465,000','  ','Vero Beach, FL 32963 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/48/69916.jpg','69916','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=69916&idxID=012');
	properties[3] = new Array('399,000','  ','Vero Beach, FL 32963 ','http://www.debbell.idxco.com/images/noHousePhoto.png','73193','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=73193&idxID=012');
	properties[4] = new Array('350,000','  ','Vero Beach, FL 32963 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/28/70676.jpg','70676','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=70676&idxID=012');
	properties[5] = new Array('345,000','  ','Vero Beach, FL 32963 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/28/69876.jpg','69876','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=69876&idxID=012');
	properties[6] = new Array('315,000','  ','Vero Beach, FL 32966 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/26/73242.jpg','73242','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=73242&idxID=012');
	properties[7] = new Array('185,000','  ','Vero Beach, FL 32960 ','http://extimages2.living.net/ImagesHomeProd6/FL/idx/photos/indianriver/91/66297.jpg','66297','012','http://www.debbell.idxco.com/idx/3042/details.php?listingID=66297&idxID=012');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
