	// IDX Broker Slideshow version 1.0
	// Copyright ©2009 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 = 3000;
	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: Geneva, Arial, Helvetica, sans-serif; font-size: 16px; color: #ffffff;  }');
	document.writeln('#IDX-slideshow { text-align: center; border-width: 1px; border-style: solid; border-color: #ffffff; width: 370px; height: 350px;  }');
	document.writeln('.IDX-image { width: 370px; height: 290px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 4 - 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 >= 4)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 4 - 1;
	} // end genPrev

	var properties = new Array(4);
	properties[0] = new Array('895,000','1043 GRAND ISLE DR ','Naples, FL 34108 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/73/208046691.jpg','208046691','115','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=208046691&idxID=115');
	properties[1] = new Array('649,000','6371 PELICAN BAY BLVD N-1 ','Naples, FL 34108 ','http://supplemental.idxco.com/3338-12132963661606656','208021885','115','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=208021885&idxID=115');
	properties[2] = new Array('292,500','3410 N GULF SHORE BLVD 602 ','Naples, FL 34103 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/85/207037395.jpg','207037395','115','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=207037395&idxID=115');
	properties[3] = new Array('155,000','104 CLUBHOUSE DR 272 ','Naples, FL 34105 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/76/208032292.jpg','208032292','115','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=208032292&idxID=115');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
