	// 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 = 30000;
	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: normal;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 275px; height: 258px;  }');
	document.writeln('.IDX-image { width: 250px; height: 187px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 4 - 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 >= 4)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 4 - 1;
	} // end genPrev

	var properties = new Array(5);
	properties[0] = new Array('350,000','10455 BURRIS CT ','ORLANDO, FL 32836 ','http://photos-10.idxco.com/194cd1963ceabf6093b165d18edb64060b0O5077999','O5077999','194','http://www.annemariesells.idxco.com/idx/7612/details.php?listingID=O5077999&idxID=194','3','3','What a great find!This home is nestled on one acre in a sm...','','COLDWELL BANKER RESIDENTIAL RE');
	properties[1] = new Array('210,000','521 PLEASANT GROVE DR ','WINTER SPGS, FL 32708 ','http://photos-10.idxco.com/194e133e88334aefc623b49b49a871f8ceaO5084084','O5084084','194','http://www.annemariesells.idxco.com/idx/7612/details.php?listingID=O5084084&idxID=194','4','2','What a great home and READY TO MOVE IN!!Located in desirab...','','COLDWELL BANKER RESIDENTIAL RE');
	properties[2] = new Array('60,000','432 OAKRIDGE AVE ','COCOA, FL 32927 ','http://photos-10.idxco.com/194287ed2e12cbd0e050a10bf17ef0b6195O5086853','O5086853','194','http://www.annemariesells.idxco.com/idx/7612/details.php?listingID=O5086853&idxID=194','3','2','Short Sale. This home is move in ready and cute as a button!...','','COLDWELL BANKER RESIDENTIAL RE');
	properties[3] = new Array('40,000','108 HIDDEN ARBOR CT 108 ','SANFORD, FL 32773 ','http://photos-10.idxco.com/1946b57173070e0eb239de319d52c4ac4deO5059203','O5059203','194','http://www.annemariesells.idxco.com/idx/7612/details.php?listingID=O5059203&idxID=194','2','2','Short Sale.Active with Contract On the border of Lake Mary, ...','','COLDWELL BANKER RESIDENTIAL RE');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

