	// 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 = 5000;
	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: Verdana, Arial, Helvetica, sans-serif;  }');
	document.writeln('#IDX-slideshow { text-align: center; background-color: ##D5FFF; width: 170px; height: 200px;  }');
	document.writeln('.IDX-image { width: 170px; height: 150px;  }');
	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+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('4,470,000','9139 TIBET POINTE CIR ','WINDERMERE, FL 34786 ','http://photos-10.idxco.com/194aa44c49952da71b184d1c2359ccb3a57O5058904','O5058904','194','http://www.execrealtor.idxco.com/idx/2440/details.php?listingID=O5058904&idxID=194','6','6','Gorgeous Bulter Chain-of-Lakes home in Keenes Pointe with ov...');
	properties[1] = new Array('945,500','6240 GREATWATER DR ','WINDERMERE, FL 34786 ','http://photos-10.idxco.com/1949994da466a5a27e4e728565e30aa6b70O5078889','O5078889','194','http://www.execrealtor.idxco.com/idx/2440/details.php?listingID=O5078889&idxID=194','6','5','Short Sale.Active with Contract.Showpiece of excellence,...');
	properties[2] = new Array('890,000','','WINDERMERE, FL 34786 ','http://photos-10.idxco.com/194bfdce046f4840363db821ad127121ba6O4903700','O4903700','194','http://www.execrealtor.idxco.com/idx/2440/details.php?listingID=O4903700&idxID=194','6','4','Skiing &amp; Fishing enthusiasts will appreciate the panoram...');
	properties[3] = new Array('775,000','1802 LAKE ROBERTS CT ','WINDERMERE, FL 34786 ','http://photos-10.idxco.com/19459ddaea67ea7e91e9687748da9bd950bO5067550','O5067550','194','http://www.execrealtor.idxco.com/idx/2440/details.php?listingID=O5067550&idxID=194','4','2','Located in gated Windermere Club, this outstanding Lakefront...');
	properties[4] = new Array('325,000','10728 WOODCHASE CIR ','ORLANDO, FL 32836 ','http://photos-10.idxco.com/1940cd02c8a9263dbb7951185e8c15a65f7O5052498','O5052498','194','http://www.execrealtor.idxco.com/idx/2440/details.php?listingID=O5052498&idxID=194','3','3','Contract pending with contingencies.Large one story floor ...');
	properties[5] = new Array('125,000','4766 VERO BEACH PL ','KISSIMMEE, FL 34746 ','http://photos-10.idxco.com/194731bf2529ed4272ce31b541c4b2478e7O5050909','O5050909','194','http://www.execrealtor.idxco.com/idx/2440/details.php?listingID=O5050909&idxID=194','3','2','Recently Updated,Fully Furnished,Mediterranean style tow...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

