	// 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-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 224px; height: 200px;  }');
	document.writeln('.IDX-image { width: 199px; height: 120px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 3 - 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 >= 3)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 3 - 1;
	} // end genPrev

	var properties = new Array(4);
	properties[0] = new Array('272,500','24165 DIETZ DR ','BONITA SPRINGS, FL 34135-7031 ','http://photos-10.idxco.com/188df4f6ac019bea2474ceb99f652a6c65f212004020','212004020','188','http://homesearch.lionrealtyflorida.com/idx/4415/details.php?listingID=212004020&idxID=188','4','3','This property is bank owned, not a short sale. 3/2 with 1/1g...','Norbert Waldenmayer','Lion Realty');
	properties[1] = new Array('167,900','15141 SEA BREEZE COVE CIR ','FORT MYERS, FL 33908 ','http://photos-10.idxco.com/1883deb85e7719aa2151ecb510130a57f0f212004148','212004148','188','http://homesearch.lionrealtyflorida.com/idx/4415/details.php?listingID=212004148&idxID=188','3','2','This property is bank owned, not a short sale. All offers ar...','Norbert Waldenmayer','Lion Realty');
	properties[2] = new Array('148,000','504 SW Trafalgar Pkwy ','Cape Coral, FL 33991 ','http://mediall.rapmls.com/fortmyersmls/listingpics/bigphoto/030/201119630.jpg?','201119630','016','http://homesearch.lionrealtyflorida.com/idx/4415/details.php?listingID=201119630&idxID=016','3','2','This is a Short Sale subject to existing lender\\\\\\\'s approva...','Norbert Waldenmayer','Lion Realty');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

