	// IDX Broker Slideshow version 1.0
	// Copyright ©2008 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: normal; font-style: normal;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 192px; height: 181px;  }');
	document.writeln('.IDX-image { width: 192px; height: 127px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 8 - 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>');

	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>';
		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 >= 8)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 8 - 1;
	} // end genPrev

	var properties = new Array(8);
	properties[0] = new Array('13,500,000','','Austin, TX 78732 ','http://photos-3.idxco.com/0432d07d69d7e7e42b25658e633a94888fc4220766','4220766','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=4220766&idxID=043');
	properties[1] = new Array('2,150,000','533 Cortona ','West Lake Hills, TX 78746 ','http://photos-3.idxco.com/04363a6d96e6b7cab5497101b3d6f456cf57521358','7521358','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=7521358&idxID=043');
	properties[2] = new Array('1,495,000','4802 Ranch Rd 2222 ','Austin, TX 78731 ','http://photos-3.idxco.com/043d7b368d3c16cfe97bb17a9948a5741db2982218','2982218','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=2982218&idxID=043');
	properties[3] = new Array('1,395,000','1907 Mccall ','Austin, TX 78703 ','http://photos-3.idxco.com/043efeba0ffd89979f4003cac78fbd0f7bf6981360','6981360','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=6981360&idxID=043');
	properties[4] = new Array('849,000','5431 Tortuga ','Austin, TX 78731 ','http://photos-3.idxco.com/043783aacce0de610c85dad364b4f4c00df2202054','2202054','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=2202054&idxID=043');
	properties[5] = new Array('650,000','912 Bouldin ','Austin, TX 78704 ','http://photos-3.idxco.com/0438c245e5a384a1100c9aa9a5a669f95bc7188043','7188043','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=7188043&idxID=043');
	properties[6] = new Array('599,000','1105 W Mary ','Austin, TX 78704 ','http://photos-3.idxco.com/0433d7183f7068f3b90c448fc833b4549602015080','2015080','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=2015080&idxID=043');
	properties[7] = new Array('579,900','711 Live Oak ','Austin, TX 78704 ','http://photos-3.idxco.com/0439e33005b3ccf56f105dd42db8ab83efa5143083','5143083','043','http://austinmodernliving.idxco.com/idx/2465/details.php?listingID=5143083&idxID=043');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
