	// 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 = 6 - 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+'Baths: '+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 >= 6)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 6 - 1;
	} // end genPrev

	var properties = new Array(6);
	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('499,900','6371 PELICAN BAY BLVD N-1 ','NAPLES, FL 34108-8125 ','http://photos-10.idxco.com/188656db0f17d06118a617a379c4eb5a73d208021885','208021885','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=208021885&idxID=188','3','2','Location! Location! On the right side of the street. Only st...');
	properties[2] = 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[3] = new Array('345,000','1906 SEVILLE BLVD 1811 ','NAPLES, FL 34109-3361 ','http://photos-10.idxco.com/188085b093d9077833620874a526d33002b209014422','209014422','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=209014422&idxID=188','2','2','Outstanding value. Owner has left Naples. Perfect setting wi...');
	properties[4] = new Array('184,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[5] = new Array('155,000','104 CLUBHOUSE DR 272 ','NAPLES, FL 34105-2937 ','http://photos-10.idxco.com/188aad69766085a6202899aec9b3720d0c3208032292','208032292','188','http://www.naplesrealtyteam.idxco.com/idx/3338/details.php?listingID=208032292&idxID=188','2','2','Ready for your designer. Turn this spacious 2/2 2nd floor co...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
