	// IDX Broker Slideshow version 1.0
	// Copyright ©2009 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-size: 14px; font-style: italic;  }');
	document.writeln('#IDX-slideshow { text-align: center; border-width: 3px; border-style: double; border-color: #green; width: 230px; height: 200px;  }');
	document.writeln('.IDX-image { width: 200px; height: 140px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 7 - 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 >= 7)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 7 - 1;
	} // end genPrev

	var properties = new Array(7);
	properties[0] = new Array('145,000','214 Hayden Way ','Thomasville, GA 31792 ','http://photos-16.idxco.com/301dd09e5f239af327445a4ec9a90a07238511265','511265','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=511265&idxID=301','3','2','This property is a must see. Beautifully decorated just like...');
	properties[1] = new Array('189,000','1 Lewis Rd ','Cairo, GA 39828 ','http://photos-16.idxco.com/3013cea0c4cd9e6aa27201f39c8b89dac35660631','660631','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=660631&idxID=301','3','2','This 3/2 New Construction home site will sit on a 1 acre cou...');
	properties[2] = new Array('189,000','Lot 2 Lewis Rd ','Cairo, GA 39828 ','http://photos-16.idxco.com/301055553fe116e4462beaafb268eba1d79873143','873143','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=873143&idxID=301','3','2','This 3/2 New Construction on 1 acre country lot home is beau...');
	properties[3] = new Array('224,000','788 Midway Rd ','Cairo, GA 39828 ','http://photos-16.idxco.com/3011f3ba4d641c676e6eea5d4cf1dd56a84772735','772735','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=772735&idxID=301','3','2','Spectacular 3/2 home w/1802 sq.ft. under A/C on 1.09 acres w...');
	properties[4] = new Array('249,000','1443-1 Midway Rd ','Cairo, GA 39828 ','http://photos-16.idxco.com/301d325c436e061773139208840dcc19b90663638','663638','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=663638&idxID=301','3','2','This 3 bedroom / 2 bath New Construction home site will sit ...');
	properties[5] = new Array('294,900','1443-3 Midway Rd ','Cairo, GA 39828 ','http://photos-16.idxco.com/301ee087f10697d049ee2e84a887291135f847183','847183','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=847183&idxID=301','4','3','This 4/3 charming New construction country-style home exudes...');
	properties[6] = new Array('328,400','201 Sweetwater Drive ','Thomasville, GA 31757 ','http://photos-16.idxco.com/301c6749c7bde5b16cabc97b488e37b4f04611000','611000','301','http://www.ecohomesga.idxco.com/idx/4644/details.php?listingID=611000&idxID=301','4','3','1st ENERGY STAR QUALIFIED GREEN Luxury Custom Home with Smar...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
