	// IDX Broker Slideshow version 1.0
	// Copyright ©2009 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 = 6000;
	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-size: 12px;  }');
	document.writeln('#IDX-slideshow { text-align: center; width: 160px; height: 160px;  }');
	document.writeln('.IDX-image { width: 160px; height: 120px;  }');
	document.writeln('#IDX-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next = 1;
	prev = 6 - 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 >= 6)
			next = 0;
	} // end genNext
	function genPrev()
	{
		prev = cwi - 1;
		if (prev < 0)
			prev = 6 - 1;
	} // end genPrev

	var properties = new Array(6);
	properties[0] = new Array('799,000','16 DON CARLOS DR ','HANOVER PARK, IL 60133 ','http://www.mredllc.com/photos/property/790/07163790.jpg','07163790','004','http://www.ehomesmart.idxco.com/idx/4478/details.php?listingID=07163790&idxID=004','4','4','YOU\\\\\\\'LL FALL IN LOVE WITH THIS BEAUTIFUL ALL BRICK MAINT.F...');
	properties[1] = new Array('275,000','423 LIBERTY DR ','WHEATON, IL 60187 ','http://www.mredllc.com/photos/property/386/07183386.jpg','07183386','004','http://www.ehomesmart.idxco.com/idx/4478/details.php?listingID=07183386&idxID=004','3','2','DON\\\\\\\'T MISS THIS OPPORTUNITY...WHEATON IS THE PLACE TO LIV...');
	properties[2] = new Array('169,000','Address Not Published ','VILLA PARK, IL 60181 ','http://www.mredllc.com/photos/property/392/07153392.jpg','07153392','004','http://www.ehomesmart.idxco.com/idx/4478/details.php?listingID=07153392&idxID=004','8','1','SUBJECT TO BANK APPROVAL. AGENT OWNED.        ...');
	properties[3] = new Array('164,900','321 HOME AVE ','ITASCA, IL 60143 ','http://www.mredllc.com/photos/property/746/07203746.jpg','07203746','004','http://www.ehomesmart.idxco.com/idx/4478/details.php?listingID=07203746&idxID=004','3','1','TEAR DOWN OR REHAB. GREAT LOCATION- WALK TO SCHOOLS, PARK, A...');
	properties[4] = new Array('134,900','902 RICHARD ST ','AURORA, IL 60506 ','http://www.mredllc.com/photos/property/150/07122150.jpg','07122150','004','http://www.ehomesmart.idxco.com/idx/4478/details.php?listingID=07122150&idxID=004','3','1','CHARMING 3 BR BRIGHT &amp; SUNNY RANCH ON A LARGE MATURE LOT...');
	properties[5] = new Array('119,900','720 WELLINGTON AVE 419 ','ELK GROVE VILLAGE, IL 60007 ','http://www.mredllc.com/photos/property/090/07124090.jpg','07124090','004','http://www.ehomesmart.idxco.com/idx/4478/details.php?listingID=07124090&idxID=004','2','2','BEAUTIFUL, 4TH FLOOR, CLEAN AND SUNNY CONDO.  NEW CARPET, NE...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();
