	// 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 = 7 - 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-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>');

	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-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>';
		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 >= 7)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 7 - 1;
	} // end genPrev

	var properties = new Array(7);
	properties[0] = new Array('1,299,000','2365 CHESHIRE LN # ','NAPLES, FL 34109 ','http://photos-10.idxco.com/18899760b5541e81709089354c7d96c27da209016358','209016358','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209016358&idxID=188','4','3','This beautifully appointed custom built home offers endless ...');
	properties[1] = new Array('1,195,000','2357 CHESHIRE LN # ','NAPLES, FL 34109 ','http://clientlogos.idxco.com/noPhoto_3338','209040316','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209040316&idxID=188','4','3','...');
	properties[2] = new Array('519,000','9029 WHIMBREL WATCH LN #102 ','NAPLES, FL 34109 ','http://photos-10.idxco.com/188ba055669e62acc28cd9a3a88e70609ee209024777','209024777','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209024777&idxID=188','3','2','You will truly enjoy this luxurious end unit coach home with...');
	properties[3] = new Array('439,900','2432 RAVENNA BLVD #202 ','NAPLES, FL 34109-0391 ','http://photos-10.idxco.com/188a1ca7e511d1e90f2b8b6c7c443d5408d209033945','209033945','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209033945&idxID=188','3','3','What a fantastic price for this immaculate 3 bedroom, 3 bath...');
	properties[4] = new Array('429,000','7718 PEBBLE CREEK CIR #103 ','NAPLES, FL 34108-6557 ','http://photos-10.idxco.com/188f17f0974c056d4628d8d20aba16dbe6f209010360','209010360','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209010360&idxID=188','2','2','Very desirable 1st floor unit in prime location over looking...');
	properties[5] = new Array('159,900','7415 PLUMBAGO BRIDGE RD #104 ','NAPLES, FL 34109-7698 ','http://photos-10.idxco.com/188f2006428121e47c376d6c04bf6b12e9b209016352','209016352','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209016352&idxID=188','2','2','Outstanding value - first floor end unit. Very light and bri...');
	properties[6] = new Array('140,000','104 CLUBHOUSE DR #272 ','NAPLES, FL 34105-2937 ','http://photos-10.idxco.com/188aad69766085a6202899aec9b3720d0c3209030783','209030783','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209030783&idxID=188','2','2','Wonderful value! With a very attractive price reduction, now...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
