	// 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 = 4000;
	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; font-style: normal; text-decoration: blink;  }');
	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 = 14 - 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 >= 14)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 14 - 1;
	} // end genPrev

	var properties = new Array(14);
	properties[0] = new Array('200,000','117 Pimlico ','Royal Palm Beach, FL 33411 ','http://photos-1.idxco.com/010ad00b0087272a2fc8e64788bc304e50fR3186837','R3186837','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3186837&idxID=010','4','3','...');
	properties[1] = new Array('150,000','4293 Kent ','Lake Worth, FL 33461 ','http://photos-1.idxco.com/010f2721eebb15176eacf70c6be744760beR3239201','R3239201','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3239201&idxID=010','3','2','...');
	properties[2] = new Array('150,000','255 Evernia St # 722 ','West Palm Beach, FL 33401 ','http://photos-1.idxco.com/010935d9222edb7b885f5dc0c886ccb0e18R3141596','R3141596','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3141596&idxID=010','1','1','BEAUTIFUL MARBLE FLOORS, UPDATE BATH AND CROWN MOULDINGS....');
	properties[3] = new Array('125,000','4308 COHUNE PALM Ct ','Greenacres, FL 33463 ','http://photos-1.idxco.com/010fe8d2e6dc53c744df37da3d8177f779aR3246543','R3246543','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3246543&idxID=010','3','2','...');
	properties[4] = new Array('110,000','332 Shady Lane Rd ','Palm Springs, FL 33461 ','http://photos-1.idxco.com/0108e51eda691946ce6a12b6add5a2d7054R3254379','R3254379','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3254379&idxID=010','4','3','...');
	properties[5] = new Array('110,000','4655 Weymouth St ','Lake Worth, FL 33463 ','http://photos-1.idxco.com/010ee00a6e05f943b54bd0c2bc958e787f7R3254028','R3254028','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3254028&idxID=010','','','...');
	properties[6] = new Array('101,000','317 WALKER Av ','Greenacres, FL 33463 ','http://photos-1.idxco.com/0104170a5977d76c289a70acb3d7811201cR3106111','R3106111','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3106111&idxID=010','3','2','...');
	properties[7] = new Array('100,000','1035 30th Pl ','Miami, FL 33125 ','http://photos-1.idxco.com/0104eaf578bee21ad5fa6cf7c470b8a81fdR3251311','R3251311','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3251311&idxID=010','2','1','...');
	properties[8] = new Array('85,000','5940 S 38th Ct ','Greenacres, FL 33463 ','http://photos-1.idxco.com/010beccd61abfe88726e30fe17fa2177a75R3219074','R3219074','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3219074&idxID=010','2','1','...');
	properties[9] = new Array('85,000','901 Forest Hill Blvd ','West Palm Beach, FL 33405 ','http://photos-1.idxco.com/010057b69f236ba9ef85aec8bb8f9da026eR3239179','R3239179','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3239179&idxID=010','2','1','...');
	properties[10] = new Array('80,000','10069 S Patience ','Royal Palm Beach, FL 33411 ','http://photos-1.idxco.com/010589b8bc2480a2d94ddd1bf66bff1c2d2R3221024','R3221024','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3221024&idxID=010','3','1','...');
	properties[11] = new Array('70,000','101 Gale Pl ','West Palm Beach, FL 33409 ','http://photos-1.idxco.com/0103158cf693613a113239a650654fb0321R3214640','R3214640','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3214640&idxID=010','3','2','...');
	properties[12] = new Array('39,900','3710 N JOG Rd # 103 ','West Palm Beach, FL 33411 ','http://photos-1.idxco.com/0109e6fafbfebf39185b713bab38ccda805R3133128','R3133128','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3133128&idxID=010','2','2','...');
	properties[13] = new Array('32,000','1503 OSCEOLA ','West Palm Beach, FL 33409 ','http://photos-1.idxco.com/010ef1272981e5e6e2deac79b1e946064b5R3187242','R3187242','010','http://www.expofl.idxco.com/idx/2986/details.php?listingID=R3187242&idxID=010','3','2','...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

