	// 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 = 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-family: Geneva, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; font-style: normal; color: ##33333;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 190px; height: 200px;  }');
	document.writeln('.IDX-image { width: 180px; height: 150px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 9 - 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 >= 9)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 9 - 1;
	} // end genPrev

	var properties = new Array(10);
	properties[0] = new Array('364,900','2980 HAYDEN RD ','PEA RIDGE, AR 72751 ','http://photos-11.idxco.com/2015b0d9a69e527d17ef850911e41be7d83627275','627275','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=627275&idxID=201','3','3','COUNTRY LIVING AT ITS BEST.BEAUTIFUL HOME ON 10.3 ACRES M/...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[1] = new Array('229,900','14 ELMHAM LN ','BELLA VISTA, AR 72715 ','http://photos-11.idxco.com/2019644c2553ac3e5c95430bf291e5fbc40648062','648062','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=648062&idxID=201','3','4','GREAT FAMILY HOME WITH SOUTHERN STYLE FRONT PORCH, WOOD FLOO...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[2] = new Array('215,000','8 ROUNTREE DR ','BELLA VISTA, AR 72715 ','http://photos-11.idxco.com/201be3738a4f4722b7538134ca7ea1129ba648071','648071','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=648071&idxID=201','3','3','GREAT FAMILY HOME WITH ALL THE GOODIES!!!GRANITE, WOOD FLO...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[3] = new Array('159,900','LARGS LN ','BELLA VISTA, 72715 ','http://photos-11.idxco.com/201fec81b77260ba161e2cac3ae60fbcccb635448','635448','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=635448&idxID=201','','','BEST LOT LEFT ON LOCH LOMOND. OVER 300\\\\\\\' OF LAKE FRONT WIT...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[4] = new Array('143,900','1 HENRIETTA LN ','BELLA VISTA, AR 72714 ','http://photos-11.idxco.com/201ccf7cebc18374bd0ddd2812ba0145d17645269','645269','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=645269&idxID=201','3','2','FIRST CLASS HOME FEATURING, STONE FP, 12\\\\\\\' CEILINGS, GRANI...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[5] = new Array('75,900','2 PISGAH LOOP ','BELLA VISTA, AR 72714 ','http://photos-11.idxco.com/201ade81ecb3dd35eed3de4023a35c17306636543','636543','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=636543&idxID=201','3','2','DOUBLE WIDE ON PERMANENT FOUNDATION.GOOD SIZE ROOMS, PERFE...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[6] = new Array('69,900','-- JIMMY LN ','BELLA VISTA, 72715 ','http://photos-11.idxco.com/201b82dbff9fc8e0e6affbdb36247aa0233638799','638799','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=638799&idxID=201','','','BEAUTIFUL BUILDING LOT ON 2.2 ACRES.PROPERTY SURROUNDED &a...','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[7] = new Array('14,900','-- CARGILL CIR ','BELLA VISTA, 72715 ','http://photos-11.idxco.com/201703371a5e2da0c1339dfe08a1da441ee638776','638776','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=638776&idxID=201','','','NICE BUILDING LOT IN GOOD LOCATION....','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	properties[8] = new Array('11,900','-- STONEYKIRK DR ','BELLA VISTA, 72715 ','http://photos-11.idxco.com/201966af80b37b14a2da8bedb409d103d17638788','638788','201','http://www.mikewarnerhomes.idxco.com/idx/6661/details.php?listingID=638788&idxID=201','','','NICE BUILDING LOT IN THE HIGHLANDS....','Michael Warner','Coldwell Banker Harris McHaney Faucette - BV');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

