	// 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 = 6000;
	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-size: 14px;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 320px; height: 300px;  }');
	document.writeln('.IDX-image { width: 320px; height: 240px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 5 - 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 >= 5)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 5 - 1;
	} // end genPrev

	var properties = new Array(6);
	properties[0] = new Array('3,200,000','3232 S GREEN DOLPHIN LN ','Naples, FL 34102 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/76/210023692.jpg','210023692','115','http://www.jansellsnaples.idxco.com/idx/11161/details.php?listingID=210023692&idxID=115','5','5','A prestigious Port Royal Estate presenting a timeless French...','Waller,Mary','Old Naples Realty Inc.');
	properties[1] = new Array('1,899,000','8787 BAY COLONY DR 406 ','Naples, FL 34108 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/28/211014376.jpg','211014376','115','http://www.jansellsnaples.idxco.com/idx/11161/details.php?listingID=211014376&idxID=115','4','4','Just Reduced! Enjoy this elegantly designed &amp; furnished ...','Saad,Fahada','Coldwell Banker Residential RE Naples North');
	properties[2] = new Array('795,000','705 PORTSIDE DR ','Naples, FL 34103 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/17/211516639.jpg','211516639','115','http://www.jansellsnaples.idxco.com/idx/11161/details.php?listingID=211516639&idxID=115','3','2','Completely renovated 3 bedroom, 2 bath home with stone floor...','Van Arsdale,Karen','Premier Sotheby\'s Intl. Realty');
	properties[3] = new Array('580,000','185 COLONADE CIR 1502 ','Naples, FL 34103 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/43/211510381.jpg','211510381','115','http://www.jansellsnaples.idxco.com/idx/11161/details.php?listingID=211510381&idxID=115','2','2','This well maintained and recently updated Barcelona, first f...','Kriegbaum,Dedra','Premiere Plus Realty Co. NAPLES');
	properties[4] = new Array('545,000','882 S 7TH AVE ','Naples, FL 34102 ','http://extimages2.living.net/ImagesHomeProd5/FL/idx/photos/naples/34/211517878.jpg','211517878','115','http://www.jansellsnaples.idxco.com/idx/11161/details.php?listingID=211517878&idxID=115','2','2','Fabulous renovated and immaculate condominium located in the...','Culp,Richard','Premier Sotheby\'s Intl. Realtyt Florida, Inc. REALTORS');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

