	// 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 = 5000;
	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: 10px; font-weight: bold; font-style: normal; color: #00000;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 178px; height: 280px;  }');
	document.writeln('.IDX-image { width: 178px; height: 219px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 11 - 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-listingAgent" style="display:none;"></div>');
	document.writeln('<div id="IDX-listingOffice" 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-listingAgent').innerHTML = urlVar+properties[cwi][10]+'</a>';
		document.getElementById('IDX-listingOffice').innerHTML = urlVar+properties[cwi][11]+'</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 >= 11)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 11 - 1;
	} // end genPrev

	var properties = new Array(12);
	properties[0] = new Array('2,395,000','239 CHANNEL DR ','NAPLES, FL 34108-2143 ','http://photos-10.idxco.com/1887d925cba3f05180bf225dba70cda9910212003988','212003988','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=212003988&idxID=188','4','4','H.6349 - ELEGANCE THROUGHOUT THE EXQUISITE, TWO-STORY ESTATE...','Cheryl D Turner','John R. Wood REALTORS');
	properties[1] = new Array('1,774,000','9085 TERRANOVA DR ','NAPLES, FL 34109 ','http://photos-10.idxco.com/18887fa659efb8d9f0ea8cf895f04366e1c210033396','210033396','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=210033396&idxID=188','4','4','V.1446 - CALL YOUR BUYERS !! THE MOST STUNNING VILLA IN PELI...','Cheryl D Turner','John R. Wood REALTORS');
	properties[2] = new Array('1,575,000','705 TAMARIND CT ','NAPLES, FL 34108-8260 ','http://photos-10.idxco.com/1881706dbf6fde0688d8ced7a9760d37df4212003398','212003398','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=212003398&idxID=188','4','4','H.6338 - LAKE VIEWS FROM MAIN LIVING AREAS. CUSTOME BUILT, C...','Cheryl D Turner','John R. Wood REALTORS');
	properties[3] = new Array('975,000','10691 GULFSHORE DR ','NAPLES, FL 34108-3014 ','http://photos-10.idxco.com/18820f453528c8e8eb83e0b60e52c3c5793211522251','211522251','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=211522251&idxID=188','2','2','C.8005 - Completely renovated. Three large lanai\\\\\\\'s !! Enj...','Cheryl D Turner','John R. Wood REALTORS');
	properties[4] = new Array('675,000','445 COVE TOWER DR #1403 ','NAPLES, FL 34110 ','http://photos-10.idxco.com/188e9a0b3a3f9bc1db6022eca5e20b926e5211005798','211005798','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=211005798&idxID=188','3','3','C.5766 - Best Waterfront Value in Naples! This very private,...','Cheryl D Turner','John R. Wood REALTORS');
	properties[5] = new Array('399,000','1505 CLERMONT DR #202 ','NAPLES, FL 34109-0351 ','http://photos-10.idxco.com/188d8337c15ae24a3fb68b21baf7626f6ce211516843','211516843','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=211516843&idxID=188','3','2','C.7338 - Immaculate 2nd floor customized end unit 3 bedroom ...','Cheryl D Turner','John R. Wood REALTORS');
	properties[6] = new Array('399,000','3420 N GULF SHORE BLVD ','NAPLES, FL 34103-2109 ','http://photos-10.idxco.com/1883c8514b13976f70b19fa5df048ca42f7211520239','211520239','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=211520239&idxID=188','2','2','C.7935 - Fabulous location, just steps to the beach. Complet...','Cheryl D Turner','John R. Wood REALTORS');
	properties[7] = new Array('395,000','1610 CLERMONT DR #202 ','NAPLES, FL 34109-0302 ','http://images2.living.net/ImagesHomeProd5/FL/idx/photos/naples/73/211014191.jpg','211014191','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=211014191&idxID=188','3','2','C.7500 - Enjoy breathtaking golf course and water views from...','Cheryl D Turner','John R. Wood REALTORS');
	properties[8] = new Array('329,500','1374 N 13TH ST ','NAPLES, FL 34102-5240 ','http://images2.living.net/ImagesHomeProd5/FL/idx/photos/naples/70/211503090.jpg','211503090','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=211503090&idxID=188','3','2','H.5896 - Private, immaculate retreat just blocks from the be...','Cheryl D Turner','John R. Wood REALTORS');
	properties[9] = new Array('184,900','788 PARK SHORE DR #B-17 ','NAPLES, FL 34103-3723 ','http://photos-10.idxco.com/188426167488855b93f00e8219687278df6212002254','212002254','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=212002254&idxID=188','2','2','C.8119 - Rare opportunity! Enjoy proximity to the Gulf and a...','Cheryl D Turner','John R. Wood REALTORS');
	properties[10] = new Array('165,000','680 SW 5TH ST ','NAPLES, FL 34117-2115 ','http://photos-10.idxco.com/188c9b1c6b935a7c2504d354889f7274bfd212004639','212004639','188','http://www.cherylturner.idxco.com/idx/3298/details.php?listingID=212004639&idxID=188','3','2','H.6361 -You will feel right at home in this charming home ...','Cheryl D Turner','John R. Wood REALTORS');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

