	// 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: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: normal; font-style: normal; color: #ffffff;  }');
	document.writeln('#IDX-slideshow { text-align: center; background-color: #001F3C; border-width: 1px; border-style: solid; border-color: #ffffff; width: 156px;  }');
	document.writeln('.IDX-image { height: 120px;  }');
	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-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 >= 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('495,000','7754 CLUB LANE ','SARASOTA, FL 34238 ','http://photos-10.idxco.com/194a002f38b101ff3abdae19466b6986e22A3953589','A3953589','194','http://www.jamesdohertyrealestate.idxco.com/idx/3452/details.php?listingID=A3953589&idxID=194','3','2','Beautiful &amp; bright maintenance free courtyard home in th...','Listing information courtesy of MICHAEL SAUNDERS & COMPANY.');
	properties[1] = new Array('479,000','2978 BRAVURA LAKE DR ','SARASOTA, FL 34240 ','http://photos-10.idxco.com/1947de4297727803357abf5e559b01e5b64A3955497','A3955497','194','http://www.jamesdohertyrealestate.idxco.com/idx/3452/details.php?listingID=A3955497&idxID=194','4','3','Immaculately maintained 4 bedroom, 3 bath pool home on overs...','Listing information courtesy of MICHAEL SAUNDERS & COMPANY.');
	properties[2] = new Array('379,000','8281 BARTON FARMS BLVD ','SARASOTA, FL 34240 ','http://photos-10.idxco.com/194245f14f28ba3222f4f680a5bf051b861A3954843','A3954843','194','http://www.jamesdohertyrealestate.idxco.com/idx/3452/details.php?listingID=A3954843&idxID=194','4','3','Spacious 3 car garage home with 4 bedrooms, 3 baths and 2 of...','Listing information courtesy of MICHAEL SAUNDERS & COMPANY.');
	properties[3] = new Array('319,000','7349 VILLA D ESTE DR ','SARASOTA, FL 34238 ','http://photos-10.idxco.com/194d8c32a6c9a984262bef14640c5958a0cA3955661','A3955661','194','http://www.jamesdohertyrealestate.idxco.com/idx/3452/details.php?listingID=A3955661&idxID=194','2','2','Maintenance free living behind the gates of TPC Prestancia. ...','Listing information courtesy of MICHAEL SAUNDERS & COMPANY.');
	properties[4] = new Array('59,000','','SARASOTA, FL 34237 ','http://photos-10.idxco.com/194631ca4cc24c07c060dafad8bb0e30621A3952077','A3952077','194','http://www.jamesdohertyrealestate.idxco.com/idx/3452/details.php?listingID=A3952077&idxID=194','2','2','Private setting on oversized lot in Oakwood Manor with fruit...','Listing information courtesy of MICHAEL SAUNDERS & COMPANY.');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

