	// 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 = 10000;
	var cwi = 0;
	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-slideshow { border-width: 3px; border-style: groove;  }');
	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('869,900','11811 MARBLEHEAD DR ','TAMPA, FL 33626 ','http://photos-10.idxco.com/194b567ba1ad378a988ccc66221e6b5f922T2489254','T2489254','194','http://www.townchase.idxco.com/idx/2684/details.php?listingID=T2489254&idxID=194','5','4','Arthur Rutenberg Stratford IV looking down the fairway on th...');
	properties[1] = new Array('419,000','12838 STANWYCK CIR ','TAMPA, FL 33626 ','http://photos-10.idxco.com/19480798d638892e9d36c0592b795a2a5feT2493344','T2493344','194','http://www.townchase.idxco.com/idx/2684/details.php?listingID=T2493344&idxID=194','5','3','Spectacular home with 5 true bedrooms 4 baths plus bonus roo...');
	properties[2] = new Array('409,000','12702 STANWYCK CIR ','TAMPA, FL 33626 ','http://clientlogos.idxco.com/logo_2684','T2503691','194','http://www.townchase.idxco.com/idx/2684/details.php?listingID=T2503691&idxID=194','4','4','A must see!This amazing home is move in ready!Gorgeous A...');
	properties[3] = new Array('359,000','12416 SEABROOK DR ','TAMPA, FL 33626 ','http://photos-10.idxco.com/1943d238d2ae2e16a41a51ad971615f21ebT2493315','T2493315','194','http://www.townchase.idxco.com/idx/2684/details.php?listingID=T2493315&idxID=194','4','3','Just Reduced!Beautiful pool home located in the Woodbay su...');
	properties[4] = new Array('349,000','10301 ABBOTSFORD DR ','TAMPA, FL 33626 ','http://photos-10.idxco.com/194d7f3b9f2a711ae80a42238b23900a447T2490356','T2490356','194','http://www.townchase.idxco.com/idx/2684/details.php?listingID=T2490356&idxID=194','4','3','Pristine well kept home in the highly desirable community of...');
	properties[5] = new Array('119,040','7112 W CREEK DR ','TAMPA, FL 33615 ','http://photos-10.idxco.com/1940d05a74890d95099368e583a349e4fedT2502186','T2502186','194','http://www.townchase.idxco.com/idx/2684/details.php?listingID=T2502186&idxID=194','3','2','Short Sale.Well taken care of home in desirable area.Ope...');
	var urlVar;
	var preLoad = new Image();
	preLoad.src = properties[cwi][3];
	onLoad = play();

