	// 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 = 7000;
	var cwi = 0;
	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-slideshow { text-align: center;  }');
	document.writeln('.IDX-image { width: 550px;  }');
	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('19,950,000','2500 West Lake Boulevard ','Tahoe City, CA 96145 ','http://photos-13.idxco.com/2524a49117f1a510357dc3a94fe89bacc0020102976','20102976','252','http://justtahoe.idxco.com/idx/11818/details.php?listingID=20102976&idxID=252','5','7','Amazing furnished estate. 175\\\\\\\\\\\\\\\' on water; newly Trexed...','Katrine Watson','Chase International');
	properties[1] = new Array('6,985,000','4812-26 North Lake Boulevard ','Carnelian Bay, CA 96140 ','http://photos-13.idxco.com/252ffdcfff179404f73e7f683b84ae22f5720111707','20111707','252','http://justtahoe.idxco.com/idx/11818/details.php?listingID=20111707&idxID=252','6','6.5','Opportunity!200\\\\\\\\\\\\\\\' on water, pier, 2-bay boathouse, 3...','Katrine Watson','Chase International');
	properties[2] = new Array('4,250,000','8797 Rubicon Drive ','Tahoma, CA 96142 ','http://photos-13.idxco.com/2524e88c8848ca4f393d818f00908b80aad2901178','2901178','252','http://justtahoe.idxco.com/idx/11818/details.php?listingID=2901178&idxID=252','5','4','Lovely Rubicon Properties lakefront withState Lands permit...','Katrine Watson','Chase International');
	properties[3] = new Array('3,995,000','5568 North Lake Boulevard ','Carnelian Bay, CA 96140 ','http://photos-13.idxco.com/252dabd30c8aa2680f7f9ee30e78d711e902803411','2803411','252','http://justtahoe.idxco.com/idx/11818/details.php?listingID=2803411&idxID=252','7','5','Light and Bright, Spacious and Gracious this home offers a L...','Katrine Watson','Chase International');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

