	// IDX Broker Slideshow version 1.0
	// Copyright ¿2012 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 id="IDX-listingIdLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-bedsLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-bathsLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-remarksLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-courtesyLine" style="display:none;"></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>';
		document.getElementById('IDX-listingIdLine').innerHTML = urlVar+'Listing #'+properties[cwi][4]+'</a>';
		document.getElementById('IDX-bedsLine').innerHTML = urlVar+'Beds: '+properties[cwi][7]+'</a>';
		document.getElementById('IDX-bathsLine').innerHTML = urlVar+'Baths: '+properties[cwi][8]+'</a>';
		document.getElementById('IDX-remarksLine').innerHTML = urlVar+properties[cwi][9]+'</a>';
		document.getElementById('IDX-courtesyLine').innerHTML = urlVar+properties[cwi][10]+'</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(5);
	properties[0] = new Array('219,000','1262 SWEETWATER LN ','NAPLES, FL 34110 ','http://photos-10.idxco.com/188cef9defae533ebe9aa9c2c729d47d5b2212004589','212004589','188','http://gregmanchester.idxco.com/idx/3254/details.php?listingID=212004589&idxID=188','2','2','Beautiful waterfront 2 bedroom plus den coach home, first fl...','Listing courtesy of WEICHERT, REALTORS On The Gulf');
	properties[1] = new Array('190,000','14806 STERLING OAKS DR ','NAPLES, FL 34110-4100 ','http://photos-10.idxco.com/188c238317b1520aabbf68a760973745338212003656','212003656','188','http://gregmanchester.idxco.com/idx/3254/details.php?listingID=212003656&idxID=188','2','2','Picture perfect 2 bedroom plus den, 1 car garage attached Vi...','Listing courtesy of WEICHERT, REALTORS On The Gulf');
	properties[2] = new Array('149,000','1310 SWEETWATER CV #7102 ','NAPLES, FL 34110-4144 ','http://photos-10.idxco.com/1888d679f1a42568dd7661636dd5c09b398210011298','210011298','188','http://gregmanchester.idxco.com/idx/3254/details.php?listingID=210011298&idxID=188','2','2','This is a great condo in move in condition with large tile o...','Listing courtesy of WEICHERT, REALTORS On The Gulf');
	properties[3] = new Array('139,000','1345 SWEETWATER CV #102 ','NAPLES, FL 34110 ','http://photos-10.idxco.com/188b479cd219dabc98c2f14a2a1953ac523210009337','210009337','188','http://gregmanchester.idxco.com/idx/3254/details.php?listingID=210009337&idxID=188','2','2','First floor 2 bedroom plus den condo in excellent condition....','Listing courtesy of WEICHERT, REALTORS On The Gulf');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

