	// IDX Broker Slideshow version 2.0
	// Copyright ©2010 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 timee21a7ffc49out = 5000;
	var ce21a7ffc49wi = 0;
	
	// ie21a7ffc49sf1.11 :: Image swap-fade 
	// *****************************************************
	// DOM scripting by brothercake -- http://www.brothercake.com/
	//******************************************************
	//global object
	var ie21a7ffc49sf = { 'clock' : null, 'fade' : true, 'count' : 1 }
	
	
	//swape21a7ffc49fade setup function
	function swape21a7ffc49fade()
	{
		//if the timer is not already going
		if(ie21a7ffc49sf.clock == null)
		{
			//copy the image object 
			ie21a7ffc49sf.obj = arguments[0];
			
			//copy the image src argument 
			ie21a7ffc49sf.src = arguments[1];
			
			//store the supported form of opacity
			if(typeof ie21a7ffc49sf.obj.style.opacity != 'undefined')
			{
				ie21a7ffc49sf.type = 'w3c';
			}
			else if(typeof ie21a7ffc49sf.obj.style.MozOpacity != 'undefined')
			{
				ie21a7ffc49sf.type = 'moz';
			}
			else if(typeof ie21a7ffc49sf.obj.style.KhtmlOpacity != 'undefined')
			{
				ie21a7ffc49sf.type = 'khtml';
			}
			else if(typeof ie21a7ffc49sf.obj.filters == 'object')
			{
				//weed out win/ie5.0 by testing the length of the filters collection (where filters is an object with no data)
				//then weed out mac/ie5 by testing first the existence of the alpha object (to prevent errors in win/ie5.0)
				//then the returned value type, which should be a number, but in mac/ie5 is an empty string
				ie21a7ffc49sf.type = (ie21a7ffc49sf.obj.filters.length > 0 && typeof ie21a7ffc49sf.obj.filters.alpha == 'object' && typeof ie21a7ffc49sf.obj.filters.alpha.opacity == 'number') ? 'ie' : 'none';
			}
			else
			{
				ie21a7ffc49sf.type = 'none';
			}
			
			//change the image alt text if defined
			if(typeof arguments[3] != 'undefined' && arguments[3] != '')
			{
				ie21a7ffc49sf.obj.alt = arguments[3];
			}
			
			//if any kind of opacity is supported
			if(ie21a7ffc49sf.type != 'none')
			{
				//copy and convert fade duration argument 
				//the duration specifies the whole transition
				//but the swape21a7ffc49fade is two distinct transitions
				ie21a7ffc49sf.length = parseInt(arguments[2], 10) * 500;
				
				//create fade resolution argument as 20 steps per transition
				//again, split for the two distrinct transitions
				ie21a7ffc49sf.resolution = parseInt(arguments[2], 10) * 10;
				
				//start the timer
				ie21a7ffc49sf.clock = setInterval('ie21a7ffc49sf.swape21a7ffc49fade()', ie21a7ffc49sf.length/ie21a7ffc49sf.resolution);
			}
			
			//otherwise if opacity is not supported
			else
			{
				//just do the image swap
				ie21a7ffc49sf.obj.src = ie21a7ffc49sf.src;
			}
			
		}
	};
	
	
	//swape21a7ffc49fade timer function
	ie21a7ffc49sf.swape21a7ffc49fade = function()
	{
		//increase or reduce the counter on an exponential scale
		ie21a7ffc49sf.count = (ie21a7ffc49sf.fade) ? ie21a7ffc49sf.count * 0.9 : (ie21a7ffc49sf.count * (1/0.9)); 
		
		//if the counter has reached the bottom
		if(ie21a7ffc49sf.count < (1 / ie21a7ffc49sf.resolution))
		{
			//clear the timer
			clearInterval(ie21a7ffc49sf.clock);
			ie21a7ffc49sf.clock = null;
	
			//do the image swap
			ie21a7ffc49sf.obj.src = ie21a7ffc49sf.src;
	
			//reverse the fade direction flag
			ie21a7ffc49sf.fade = false;
			
			//restart the timer
			ie21a7ffc49sf.clock = setInterval('ie21a7ffc49sf.swape21a7ffc49fade()', ie21a7ffc49sf.length/ie21a7ffc49sf.resolution);
	
		}
		
		//if the counter has reached the top
		if(ie21a7ffc49sf.count > (1 - (1 / ie21a7ffc49sf.resolution)))
		{
			//clear the timer
			clearInterval(ie21a7ffc49sf.clock);
			ie21a7ffc49sf.clock = null;
	
			//reset the fade direction flag
			ie21a7ffc49sf.fade = true;
			
			//reset the counter
			ie21a7ffc49sf.count = 1;
		}
	
		//set new opacity value on element
		//using whatever method is supported
		switch(ie21a7ffc49sf.type)
		{
			case 'ie' :
				ie21a7ffc49sf.obj.filters.alpha.opacity = ie21a7ffc49sf.count * 100;
				break;
				
			case 'khtml' :
				ie21a7ffc49sf.obj.style.KhtmlOpacity = ie21a7ffc49sf.count;
				break;
				
			case 'moz' : 
				//restrict max opacity to prevent a visual popping effect in firefox
				ie21a7ffc49sf.obj.style.MozOpacity = (ie21a7ffc49sf.count == 1 ? 0.9999999 : ie21a7ffc49sf.count);
				break;
				
			default : 
				//restrict max opacity to prevent a visual popping effect in firefox
				ie21a7ffc49sf.obj.style.opacity = (ie21a7ffc49sf.count == 1 ? 0.9999999 : ie21a7ffc49sf.count);
		}
	};



	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-e21a7ffc49-slideshow { text-align: center;  }');
	document.writeln('.IDX-e21a7ffc49-image { height: 300px;  }');
	document.writeln('#IDX-e21a7ffc49-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var nexte21a7ffc49 = 1;
	preve21a7ffc49 = 25 - 1;

	document.writeln('<div id="IDX-e21a7ffc49-slideshow">');
	document.writeln('<div id="IDX-e21a7ffc49-slideshowImage">');
	document.writeln('<span><a href="" id="IDX-e21a7ffc49-ssImageURL" class="IDX-e21a7ffc49-ssLinkText"><img id="IDX-e21a7ffc49-ssImage" name="e21a7ffc49-ssImage" alt="Slideshow image" border="0"  class="IDX-e21a7ffc49-image" src="http://photos-10.idxco.com/194d801168991703a77c88043fa964b2147S4663962" ></a></span>');
	document.writeln('</div>');
	document.writeln('<div id="IDX-e21a7ffc49-priceLine"></div>');
	document.writeln('<div id="IDX-e21a7ffc49-addressLine"></div>');
	document.writeln('<div id="IDX-e21a7ffc49-cszLine"></div>');
	document.writeln('<div id="IDX-e21a7ffc49-bedLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-e21a7ffc49-bathLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-e21a7ffc49-remarkLine" style="display:none;"></div>');
	
	document.writeln('</div>');

	function playe21a7ffc49()
	{
		
		
		urlVare21a7ffc49 = '<a href="'+propertiese21a7ffc49[ce21a7ffc49wi][6]+'" class="IDX-e21a7ffc49-ssLinkText">';
		swape21a7ffc49fade(document.getElementById('IDX-e21a7ffc49-ssImage'), preLoade21a7ffc49.src, '1', ' ');
		document.getElementById('IDX-e21a7ffc49-ssImageURL').href = propertiese21a7ffc49[ce21a7ffc49wi][6];
		document.getElementById('IDX-e21a7ffc49-priceLine').innerHTML = urlVare21a7ffc49+'$'+propertiese21a7ffc49[ce21a7ffc49wi][0]+'</a>';
		document.getElementById('IDX-e21a7ffc49-addressLine').innerHTML =  urlVare21a7ffc49+propertiese21a7ffc49[ce21a7ffc49wi][1]+'</a>';
		document.getElementById('IDX-e21a7ffc49-cszLine').innerHTML = urlVare21a7ffc49+propertiese21a7ffc49[ce21a7ffc49wi][2]+'</a>';
		document.getElementById('IDX-e21a7ffc49-bedLine').innerHTML = urlVare21a7ffc49+'Beds: '+propertiese21a7ffc49[ce21a7ffc49wi][7]+'</a>';
		document.getElementById('IDX-e21a7ffc49-bathLine').innerHTML = urlVare21a7ffc49+'Baths: '+propertiese21a7ffc49[ce21a7ffc49wi][8]+'</a>';
		document.getElementById('IDX-e21a7ffc49-remarkLine').innerHTML = urlVare21a7ffc49+propertiese21a7ffc49[ce21a7ffc49wi][9]+'</a>';
		
		preLoade21a7ffc49 = new Image();
		preLoade21a7ffc49.src = propertiese21a7ffc49[nexte21a7ffc49][3];
		
		updatee21a7ffc49();
		
		ce21a7ffc49 = setTimeout('playe21a7ffc49()', timee21a7ffc49out);	
		
		
	} // end play()
	function updatee21a7ffc49()
	{		
		ce21a7ffc49wi = nexte21a7ffc49;		
		genNexte21a7ffc49();
		genPreve21a7ffc49();
		
	}
	function genNexte21a7ffc49()
	{
		nexte21a7ffc49 = ce21a7ffc49wi + 1;
		if (nexte21a7ffc49 >= 25)
			nexte21a7ffc49 = 0;
	} // end genNext
	function genPreve21a7ffc49()
	{
		preve21a7ffc49 = ce21a7ffc49wi - 1;
		if (preve21a7ffc49 < 0)
			preve21a7ffc49 = 25 - 1;
	} // end genPrev

	var propertiese21a7ffc49 = new Array(25);
	propertiese21a7ffc49[0] = new Array('649,900','2533 NORTHAMPTON AVE','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194d801168991703a77c88043fa964b2147S4663962','S4663962','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=S4663962&idxID=194','5','4','Elegant executive home w/ waterfront setting. This beautiful...');
	propertiese21a7ffc49[1] = new Array('550,000','2033 WILD TAMARIND BLVD','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194d3ffa20467377672b4fd41533d0f8adfO4884979','O4884979','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4884979&idxID=194','4','3','NOT YOUR AVERAGE HOME FOR SALE!!!! HOME IS PRICED $125, 000 ...');
	propertiese21a7ffc49[2] = new Array('539,000','2000 AVENEL ST','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1942113b262301225eab8543720b1a5ca52O4960033','O4960033','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4960033&idxID=194','5','4','THIS IS TRULY A STUNNING HOME ON A FABULOUS PRIVATE CONSERVA...');
	propertiese21a7ffc49[3] = new Array('500,000','4037 AVALON PARK EAST BLVD','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194c775670f563328a93668251c38f7115eO4894449','O4894449','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4894449&idxID=194','6','3','**BRING ALL OFFERS!!**STUNNING PLANTATION STYLE home with ex...');
	propertiese21a7ffc49[4] = new Array('499,999','14355 CHINESE ELM DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1941ea10991b8ee310cfdd2f5454b3897f5O4751436','O4751436','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4751436&idxID=194','4','3','GREAT PRICE REDUCTION! This one-of-a-kind one story new cust...');
	propertiese21a7ffc49[5] = new Array('499,000','2752 WINDSORGATE LN','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194324ab155bb3cceb1db2b3b188706698dO4938302','O4938302','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4938302&idxID=194','4','4','RESORT LIVING AT IT\\\\\\\'S BEST. STONEYBROOK HAS IT ALL! GATED...');
	propertiese21a7ffc49[6] = new Array('494,400','14338 SOUTHERN RED MAPLE DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/19488549b9c076df4fdabccaecdf9dc6d35O4953807','O4953807','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4953807&idxID=194','4','3','Beautiful two story home in mint condition. Ready to move in...');
	propertiese21a7ffc49[7] = new Array('485,000','2506 WINDSORGATE LN','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194c14f13d3334bbb9332f7ade259a44c11O4928708','O4928708','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4928708&idxID=194','5','4',' Stoneybrook! Wonderful gated, golf community (with great sc...');
	propertiese21a7ffc49[8] = new Array('475,000','2533 FAWNLAKE TRL','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194d0184bd9b534ac979bce0090685234d1O4918427','O4918427','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4918427&idxID=194','5','4','JUST REDUCED!! PRICED TO SELL!! Stunning semi-custom US/Rute...');
	propertiese21a7ffc49[9] = new Array('470,000','14408 FAWNHAVEN CT','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1943ce0b71cfdebfc7ad2b7686120bfa81bO4893053','O4893053','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4893053&idxID=194','5','3','EXECUTIVE 5-BEDROOM, 3 1/2 BATH POOL LOCATED ON A CUL DE SAC...');
	propertiese21a7ffc49[10] = new Array('450,000','3736 AVALON PARK EAST BLVD # 9','ORLANDO, FL 32828 ','http://photos-10.idxco.com/19454c52cc4f4e41bdbdee2992dbba44dcfO4959013','O4959013','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4959013&idxID=194','3','2','WOW! WHAT AN OPPORTUNITY TO LIVE/WORK IN THE NEOTRADITIONAL ...');
	propertiese21a7ffc49[11] = new Array('450,000','3740 AVALON PARK BLVD # 10','ORLANDO, FL 32828 ','http://photos-10.idxco.com/19434bf040640575c06a8d2fabeff9312c7O4902024','O4902024','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4902024&idxID=194','3','2','True Three Story Live/Work Unit. 1200 square feet of commeri...');
	propertiese21a7ffc49[12] = new Array('450,000','3726 AVALON PARK EAST BLVD # 7','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194769aec9e38271014ae8e8763ff4f78b3O4828826','O4828826','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4828826&idxID=194','3','2','Located in the heart of Avalon Park. Situated adjacent to th...');
	propertiese21a7ffc49[13] = new Array('450,000','3708 AVALON PARK EAST BLVD # 2','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1945ec9360fc9c10bc14ebef4ca53c8b972O4892899','O4892899','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4892899&idxID=194','3','2','FANTASTIC LIVE/WORK UNIT!! OWNER FINANCING AVAILABLE! LIVE/W...');
	propertiese21a7ffc49[14] = new Array('450,000','3716 AVALON PARK EAST BLVD. # 4','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194e117f2528949d14e161d8f6cda5a10cbO4899215','O4899215','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4899215&idxID=194','3','2',' Excellent opportunity. This is a 3 story Live/Work unit in ...');
	propertiese21a7ffc49[15] = new Array('445,000','4025 AVALON PARK EAST BLVD','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194108214ab8dd1e9411c03a24aae337f0cO4943967','O4943967','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4943967&idxID=194','4','3','NOT A SHORT SALE OR BANK OWNED!!! This custom home Served as...');
	propertiese21a7ffc49[16] = new Array('445,000','2328 BUCKINGHAM RUN CT','ORLANDO, FL 32828 ','http://photos-10.idxco.com/19430197dd516c31010eab1e70686209268O4936251','O4936251','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4936251&idxID=194','3','2','Stunning ABD Home, gated golf community. Enter the beautiful...');
	propertiese21a7ffc49[17] = new Array('415,000','335 WALTON HEATH DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194698f1cb6170f242d27e57e0899853424O4922753','O4922753','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4922753&idxID=194','4','3','SPECTACULAR GOLF-FRONT HOME OVERLOOKS 11TH GREEN OF GOLF COU...');
	propertiese21a7ffc49[18] = new Array('409,000','4706 ATWOOD DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1944b824c6423c7c7f1c16f364e5bc449f9O4960004','O4960004','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4960004&idxID=194','4','3','This lakefront home is in pristine condition. It is located ...');
	propertiese21a7ffc49[19] = new Array('400,000','3697 CASSIA DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194e4fa1f427b83ec39abd2475d636f624aO4958064','O4958064','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4958064&idxID=194','4','3','THIS IS AN EXCEPTIONAL AVALON PARK HOME LOCATED IN ONE OF TH...');
	propertiese21a7ffc49[20] = new Array('395,000','4414 ATWOOD DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/19477491fb404b21dd5ac75de0c288c0cd0R4592009','R4592009','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=R4592009&idxID=194','4','3','SHORT SALE ...');
	propertiese21a7ffc49[21] = new Array('389,950','203 WALTON HEATH DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1947348a9fb3d8afbd4e08228a9aa780ba1O4926046','O4926046','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4926046&idxID=194','4','3','FLORIDA LIFESTYLE AT ITS BEST IN A 24HR GUARD GATED GOLFING ...');
	propertiese21a7ffc49[22] = new Array('389,500','320 ROYAL LIVERPOOL LN','ORLANDO, FL 32828 ','http://photos-10.idxco.com/1942c57e081f48b64fd1ac897b5320954a9O4954553','O4954553','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4954553&idxID=194','5','3','Majestic 2-Story, Pool home located on a Conservation Lot in...');
	propertiese21a7ffc49[23] = new Array('389,000','331 PALMWAY LN','ORLANDO, FL 32828 ','http://photos-10.idxco.com/19414a19c8695ece3b405fd76e670a3833dO4921063','O4921063','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4921063&idxID=194','4','3','Immeculate condition! Beautiful landscaping in a very quite ...');
	propertiese21a7ffc49[24] = new Array('380,000','2586 FLOWERING DOGWOOD DR','ORLANDO, FL 32828 ','http://photos-10.idxco.com/194f8675f16e2364ab044152af557733c37O4897548','O4897548','194','http://www.point2hollar.idxco.com/idx/4774/details.php?listingID=O4897548&idxID=194','4','3','Bank/Corporate Owned! Beautiful Two-story, 4 Bedroom/3 1/2 B...');
	var urlVare21a7ffc49;
	var preLoade21a7ffc49 = new Image();
	preLoade21a7ffc49.src = propertiese21a7ffc49[ce21a7ffc49wi][3];
	onLoad = playe21a7ffc49();
