	// IDX Broker Slideshow version 1.0
	// Copyright ©2010 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: 10px;  }');
	document.writeln('#IDX-slideshow { text-align: center; border-style: groove; width: 300px; height: 200px;  }');
	document.writeln('.IDX-image { width: 300px; height: 200px;  }');
	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('129,995','2115 E Gann Hill Dr ','Cedar Park, TX 78613 ','http://photos-3.idxco.com/043b84c39195ee7c2ad1e6b163b13e42f542778593','2778593','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=2778593&idxID=043','3','2','Comfortable 3 bedroom, 2 bath home situated on a gorgeous co...');
	properties[1] = new Array('139,000','1105 Blewett DR ','Hutto, TX 78634 ','http://photos-3.idxco.com/0437d89b634327e104abcfa2e89e43bda159386152','9386152','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=9386152&idxID=043','3','2','Open floorplan from Eaglewood Homes with lot\\\\\\\'s of living ...');
	properties[2] = new Array('177,900','508 BROWN JUNIPER WAY ','Round Rock, TX 78664 ','http://photos-3.idxco.com/0436aced8c13409ffb604eb72ee3182a2b34920012','4920012','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=4920012&idxID=043','3','2','One story with 3 living areas - Family Room, TV/Study area, ...');
	properties[3] = new Array('179,500','1721 Long Rifle Dr ','Austin, TX 78754 ','http://photos-3.idxco.com/043726fa9c264a9c3892c27f93c8910d6373003801','3003801','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=3003801&idxID=043','4','3','Rare 4 bedroom, Master Down plus a game room &amp; formal di...');
	properties[4] = new Array('179,900','2516 Preserve Trl ','Cedar Park, TX 78613 ','http://photos-3.idxco.com/0432d6ebf9c0bd536c057716e1e5de0543d8806662','8806662','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=8806662&idxID=043','4','3','Priced  to sell! Original List price 225K! Energy Star Build...');
	properties[5] = new Array('200,000','537 Wiltshire Dr ','Hutto, TX 78634 ','http://photos-3.idxco.com/0439e0c76a57b4a8547c0c78b207cac63c15791421','5791421','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=5791421&idxID=043','3','2','What an opportunity; Barely lived in Perry Home in Star Ranc...');
	properties[6] = new Array('299,990','2529 Marble Slab Lake ','Leander, TX 78641 ','http://photos-3.idxco.com/043e731088b487af2e358d1206dbe90e7064724231','4724231','043','http://www.austinhomeresource.idxco.com/idx/4501/details.php?listingID=4724231&idxID=043','4','4','This brand new Mercedes Homes is absolutely beautiful.  Gour...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
