	// 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 time80770e7b64out = 3000;
	var c80770e7b64wi = 0;
	
	// i80770e7b64sf1.11 :: Image swap-fade 
	// *****************************************************
	// DOM scripting by brothercake -- http://www.brothercake.com/
	//******************************************************
	//global object
	var i80770e7b64sf = { 'clock' : null, 'fade' : true, 'count' : 1 }
	
	
	//swap80770e7b64fade setup function
	function swap80770e7b64fade()
	{
		//if the timer is not already going
		if(i80770e7b64sf.clock == null)
		{
			//copy the image object 
			i80770e7b64sf.obj = arguments[0];
			
			//copy the image src argument 
			i80770e7b64sf.src = arguments[1];
			
			//store the supported form of opacity
			if(typeof i80770e7b64sf.obj.style.opacity != 'undefined')
			{
				i80770e7b64sf.type = 'w3c';
			}
			else if(typeof i80770e7b64sf.obj.style.MozOpacity != 'undefined')
			{
				i80770e7b64sf.type = 'moz';
			}
			else if(typeof i80770e7b64sf.obj.style.KhtmlOpacity != 'undefined')
			{
				i80770e7b64sf.type = 'khtml';
			}
			else if(typeof i80770e7b64sf.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
				i80770e7b64sf.type = (i80770e7b64sf.obj.filters.length > 0 && typeof i80770e7b64sf.obj.filters.alpha == 'object' && typeof i80770e7b64sf.obj.filters.alpha.opacity == 'number') ? 'ie' : 'none';
			}
			else
			{
				i80770e7b64sf.type = 'none';
			}
			
			//change the image alt text if defined
			if(typeof arguments[3] != 'undefined' && arguments[3] != '')
			{
				i80770e7b64sf.obj.alt = arguments[3];
			}
			
			//if any kind of opacity is supported
			if(i80770e7b64sf.type != 'none')
			{
				//copy and convert fade duration argument 
				//the duration specifies the whole transition
				//but the swap80770e7b64fade is two distinct transitions
				i80770e7b64sf.length = parseInt(arguments[2], 10) * 500;
				
				//create fade resolution argument as 20 steps per transition
				//again, split for the two distrinct transitions
				i80770e7b64sf.resolution = parseInt(arguments[2], 10) * 10;
				
				//start the timer
				i80770e7b64sf.clock = setInterval('i80770e7b64sf.swap80770e7b64fade()', i80770e7b64sf.length/i80770e7b64sf.resolution);
			}
			
			//otherwise if opacity is not supported
			else
			{
				//just do the image swap
				i80770e7b64sf.obj.src = i80770e7b64sf.src;
			}
			
		}
	};
	
	
	//swap80770e7b64fade timer function
	i80770e7b64sf.swap80770e7b64fade = function()
	{
		//increase or reduce the counter on an exponential scale
		i80770e7b64sf.count = (i80770e7b64sf.fade) ? i80770e7b64sf.count * 0.9 : (i80770e7b64sf.count * (1/0.9)); 
		
		//if the counter has reached the bottom
		if(i80770e7b64sf.count < (1 / i80770e7b64sf.resolution))
		{
			//clear the timer
			clearInterval(i80770e7b64sf.clock);
			i80770e7b64sf.clock = null;
	
			//do the image swap
			i80770e7b64sf.obj.src = i80770e7b64sf.src;
	
			//reverse the fade direction flag
			i80770e7b64sf.fade = false;
			
			//restart the timer
			i80770e7b64sf.clock = setInterval('i80770e7b64sf.swap80770e7b64fade()', i80770e7b64sf.length/i80770e7b64sf.resolution);
	
		}
		
		//if the counter has reached the top
		if(i80770e7b64sf.count > (1 - (1 / i80770e7b64sf.resolution)))
		{
			//clear the timer
			clearInterval(i80770e7b64sf.clock);
			i80770e7b64sf.clock = null;
	
			//reset the fade direction flag
			i80770e7b64sf.fade = true;
			
			//reset the counter
			i80770e7b64sf.count = 1;
		}
	
		//set new opacity value on element
		//using whatever method is supported
		switch(i80770e7b64sf.type)
		{
			case 'ie' :
				i80770e7b64sf.obj.filters.alpha.opacity = i80770e7b64sf.count * 100;
				break;
				
			case 'khtml' :
				i80770e7b64sf.obj.style.KhtmlOpacity = i80770e7b64sf.count;
				break;
				
			case 'moz' : 
				//restrict max opacity to prevent a visual popping effect in firefox
				i80770e7b64sf.obj.style.MozOpacity = (i80770e7b64sf.count == 1 ? 0.9999999 : i80770e7b64sf.count);
				break;
				
			default : 
				//restrict max opacity to prevent a visual popping effect in firefox
				i80770e7b64sf.obj.style.opacity = (i80770e7b64sf.count == 1 ? 0.9999999 : i80770e7b64sf.count);
		}
	};



	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-80770e7b64-slideshow { text-align: center; width: 300px;  }');
	document.writeln('.IDX-80770e7b64-image { width: 300px; height: 200px;  }');
	document.writeln('#IDX-80770e7b64-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next80770e7b64 = 1;
	prev80770e7b64 = 25 - 1;

	document.writeln('<div id="IDX-80770e7b64-slideshow">');
	document.writeln('<div id="IDX-80770e7b64-slideshowImage">');
	document.writeln('<span><a href="" id="IDX-80770e7b64-ssImageURL" class="IDX-80770e7b64-ssLinkText"><img id="IDX-80770e7b64-ssImage" name="80770e7b64-ssImage" alt="Slideshow image" border="0"  class="IDX-80770e7b64-image" src="http://www.carolinaphotos.com/photos/903572.jpg" ></a></span>');
	document.writeln('</div>');
	document.writeln('<div id="IDX-80770e7b64-priceLine"></div>');
	document.writeln('<div id="IDX-80770e7b64-addressLine"></div>');
	document.writeln('<div id="IDX-80770e7b64-cszLine"></div>');
	document.writeln('<div id="IDX-80770e7b64-bedLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-80770e7b64-bathLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-80770e7b64-remarkLine" style="display:none;"></div>');
	
	document.writeln('</div>');

	function play80770e7b64()
	{
		
		
		urlVar80770e7b64 = '<a href="'+properties80770e7b64[c80770e7b64wi][6]+'" class="IDX-80770e7b64-ssLinkText">';
		swap80770e7b64fade(document.getElementById('IDX-80770e7b64-ssImage'), preLoad80770e7b64.src, '1', ' ');
		document.getElementById('IDX-80770e7b64-ssImageURL').href = properties80770e7b64[c80770e7b64wi][6];
		document.getElementById('IDX-80770e7b64-priceLine').innerHTML = urlVar80770e7b64+'$'+properties80770e7b64[c80770e7b64wi][0]+'</a>';
		document.getElementById('IDX-80770e7b64-addressLine').innerHTML =  urlVar80770e7b64+properties80770e7b64[c80770e7b64wi][1]+'</a>';
		document.getElementById('IDX-80770e7b64-cszLine').innerHTML = urlVar80770e7b64+properties80770e7b64[c80770e7b64wi][2]+'</a>';
		document.getElementById('IDX-80770e7b64-bedLine').innerHTML = urlVar80770e7b64+'Beds: '+properties80770e7b64[c80770e7b64wi][7]+'</a>';
		document.getElementById('IDX-80770e7b64-bathLine').innerHTML = urlVar80770e7b64+'Baths: '+properties80770e7b64[c80770e7b64wi][8]+'</a>';
		document.getElementById('IDX-80770e7b64-remarkLine').innerHTML = urlVar80770e7b64+properties80770e7b64[c80770e7b64wi][9]+'</a>';
		
		preLoad80770e7b64 = new Image();
		preLoad80770e7b64.src = properties80770e7b64[next80770e7b64][3];
		
		update80770e7b64();
		
		c80770e7b64 = setTimeout('play80770e7b64()', time80770e7b64out);	
		
		
	} // end play()
	function update80770e7b64()
	{		
		c80770e7b64wi = next80770e7b64;		
		genNext80770e7b64();
		genPrev80770e7b64();
		
	}
	function genNext80770e7b64()
	{
		next80770e7b64 = c80770e7b64wi + 1;
		if (next80770e7b64 >= 25)
			next80770e7b64 = 0;
	} // end genNext
	function genPrev80770e7b64()
	{
		prev80770e7b64 = c80770e7b64wi - 1;
		if (prev80770e7b64 < 0)
			prev80770e7b64 = 25 - 1;
	} // end genPrev

	var properties80770e7b64 = new Array(25);
	properties80770e7b64[0] = new Array('1,849,000','2838  Abersham Loop RD','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/903572.jpg','903572','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=903572&idxID=032','4','4','Old World luxury estate home on over 2 acres bordering green...');
	properties80770e7b64[1] = new Array('1,375,000','901  Patrick Johnston LN','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/932857.jpg','932857','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=932857&idxID=032','5','4','Home Features: Walnut Floors throughout, Lutron Lighting Sys...');
	properties80770e7b64[2] = new Array('1,324,000','15204  Holly Trail LN','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/962448.jpg','962448','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=962448&idxID=032','4','4','Custom built large estate home on over 3 acres, close to dyn...');
	properties80770e7b64[3] = new Array('999,999','19104  Golden Bear CIR','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/914912.jpg','914912','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=914912&idxID=032','7','7','Gorgeous Custom home in sought after Country Club. No expens...');
	properties80770e7b64[4] = new Array('999,000','18516  Rollingdale LN','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/896440.jpg','896440','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=896440&idxID=032','6','4','Executive estate has it all. Almost 6000 sq feet of entertai...');
	properties80770e7b64[5] = new Array('995,000','114  Peters PL','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/965737.jpg','965737','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=965737&idxID=032','4','3','New custom built green certified home located blocks from Da...');
	properties80770e7b64[6] = new Array('949,000','15305  Holly Trail LN','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/894527.jpg','894527','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=894527&idxID=032','4','3','Beautiful custom home w/many detail upgrades including a gra...');
	properties80770e7b64[7] = new Array('945,000','3000  Grey RD','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/936560.jpg','936560','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=936560&idxID=032','3','2','Country home and over 16 acres in beautiful Davidson! Seller...');
	properties80770e7b64[8] = new Array('925,000','17909  Golden Meadow CT','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/711568.jpg','711568','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=711568&idxID=032','4','3','Located on \\\\\\\'Greenway\\\\\\\' with mature tree views, full bas...');
	properties80770e7b64[9] = new Array('899,400','19011  Hodestone Mews CT','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/970793.jpg','970793','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=970793&idxID=032','4','3','Gorgeous custom basement home on the golf course at River Ru...');
	properties80770e7b64[10] = new Array('839,900','13804  Tributary ST','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/952156.jpg','952156','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=952156&idxID=032','5','4','Stunning Full Brick Custom Home. Large wrap screened porch, ...');
	properties80770e7b64[11] = new Array('839,000','13302  Bally Bunnion WAY','Davidson, NC 28036 ','http://idx.lakenormanhomeconnection.com/images/noHousePhoto.png','949476','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=949476&idxID=032','4','4','Spacious Cape Cod on one of the last golf course lots in Riv...');
	properties80770e7b64[12] = new Array('835,000','766  Concord RD','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/960457.jpg','960457','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=960457&idxID=032','4','4','Traditional home on almost an acre 1/3 mile from Main Street...');
	properties80770e7b64[13] = new Array('799,000','1916  Davis RD','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/920033.jpg','920033','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=920033&idxID=032','3','2','Davidson home/acreage featuring one of the most unique, priv...');
	properties80770e7b64[14] = new Array('799,000','18901  Gainesway CT','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/889741.jpg','889741','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=889741&idxID=032','5','4','Lovely, Well-Maintained Home in River Run.  Desired ranch w/...');
	properties80770e7b64[15] = new Array('749,900','14705 E Rocky River RD','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/965637.jpg','965637','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=965637&idxID=032','4','2','Two homes on two parcels sold as ONE.  Priced below appraisa...');
	properties80770e7b64[16] = new Array('749,900','19906  River Falls DR','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/865674.jpg','865674','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=865674&idxID=032','5','4','PRICE REDUCED!  MOTIVATED SELLER! NEW ROOF! Gorgeous custom ...');
	properties80770e7b64[17] = new Array('729,000','618  James Alexander WAY','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/897639.jpg','897639','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=897639&idxID=032','4','3','The only new house in Davidson within a 5 minute walk to dow...');
	properties80770e7b64[18] = new Array('724,999','19509  Overleaf LN','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/891669.jpg','891669','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=891669&idxID=032','4','4','Fantastic custom home. Great curb appeal and a great locatio...');
	properties80770e7b64[19] = new Array('724,000','13822  Tributary CT','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/922358.jpg','922358','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=922358&idxID=032','6','4','Graceful low country home w/rocking chair porch on quiet cul...');
	properties80770e7b64[20] = new Array('699,900','13332  Davidson Park DR','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/824827.jpg','824827','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=824827&idxID=032','4','4','Over 3500 sq/ft for a great price with this home To-Be Built...');
	properties80770e7b64[21] = new Array('699,000','19935  River Falls DR','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/907504.jpg','907504','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=907504&idxID=032','5','4','Over $100K in Recent Upgrades to this Home overlooking the 1...');
	properties80770e7b64[22] = new Array('699,000','12820  Westmoreland Farm RD','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/873633.jpg','873633','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=873633&idxID=032','5','4','Priced to sell!!!!! A great floor plan, assembled with great...');
	properties80770e7b64[23] = new Array('699,000','18610  Silent Falls CV','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/931326.jpg','931326','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=931326&idxID=032','4','3','Price reduced $26,000! Elegant stone &amp; cedar shake home ...');
	properties80770e7b64[24] = new Array('699,000','736  Hudson PL','Davidson, NC 28036 ','http://www.carolinaphotos.com/photos/912448.jpg','912448','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=912448&idxID=032','4','3','Beautifully located in Davidson Wood, walking distance to Do...');
	var urlVar80770e7b64;
	var preLoad80770e7b64 = new Image();
	preLoad80770e7b64.src = properties80770e7b64[c80770e7b64wi][3];
	onLoad = play80770e7b64();
