	// 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 = 5000;
	var cwi = 0;
	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-slideshow { width: 150px; height: 100px;  }');
	document.writeln('.IDX-image { width: 150px; height: 100px;  }');
	document.writeln('</style>');
	var next = 1;
	prev = 5 - 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 >= 5)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 5 - 1;
	} // end genPrev

	var properties = new Array(6);
	properties[0] = new Array('375,000','2677 HUDSON ST ','Denver, CO 80207 ','http://photos-6.idxco.com/102a07e2c82029b44f257edf63f55a2a6da1063813','1063813','102','http://www.homesbydonavan.idxco.com/idx/7061/details.php?listingID=1063813&idxID=102','4','2','Gorgeous Park Hill Tudor. Total Remodel Featuring Vaulted Ce...','DONAVON PASCHALL','VISION REAL ESTATE, LLC');
	properties[1] = new Array('315,000','3045 S NORMAN CT ','Denver, CO 80224 ','http://sweb1.idxco.com/images/noHousePhoto.png','1060755','102','http://www.homesbydonavan.idxco.com/idx/7061/details.php?listingID=1060755&idxID=102','4','2','...','DONAVON PASCHALL','VISION REAL ESTATE, LLC');
	properties[2] = new Array('258,000','320 LEWIS ST ','Castle Rock, CO 80104 ','http://photos-6.idxco.com/1023dbaa9d2e9ae057a64cf8b9a646a2b7d1060668','1060668','102','http://www.homesbydonavan.idxco.com/idx/7061/details.php?listingID=1060668&idxID=102','3','2','Beautifully Remodeled Home in the Heart of Castle Rock.No ...','DONAVON PASCHALL','VISION REAL ESTATE, LLC');
	properties[3] = new Array('224,500','3633 RACE ST ','Denver, CO 80205 ','http://photos-6.idxco.com/102b821583f619be47d5aa763f0b2a2ce241041670','1041670','102','http://www.homesbydonavan.idxco.com/idx/7061/details.php?listingID=1041670&idxID=102','2','1','Character and Updates Abound in this Charming Bungalow which...','DONAVON PASCHALL','VISION REAL ESTATE, LLC');
	properties[4] = new Array('50,000','2929 Fairfax ST ','Denver, CO 80207 ','http://sweb1.idxco.com/images/noHousePhoto.png','1067433','102','http://www.homesbydonavan.idxco.com/idx/7061/details.php?listingID=1067433&idxID=102','','','E-SU-Dx is a single unit district allowing suburban and urba...','DONAVON PASCHALL','VISION REAL ESTATE, LLC');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

