	// 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 time63a2be2433out = 3000;
	var c63a2be2433wi = 0;
	
	// i63a2be2433sf1.11 :: Image swap-fade 
	// *****************************************************
	// DOM scripting by brothercake -- http://www.brothercake.com/
	//******************************************************
	//global object
	var i63a2be2433sf = { 'clock' : null, 'fade' : true, 'count' : 1 }
	
	
	//swap63a2be2433fade setup function
	function swap63a2be2433fade()
	{
		//if the timer is not already going
		if(i63a2be2433sf.clock == null)
		{
			//copy the image object 
			i63a2be2433sf.obj = arguments[0];
			
			//copy the image src argument 
			i63a2be2433sf.src = arguments[1];
			
			//store the supported form of opacity
			if(typeof i63a2be2433sf.obj.style.opacity != 'undefined')
			{
				i63a2be2433sf.type = 'w3c';
			}
			else if(typeof i63a2be2433sf.obj.style.MozOpacity != 'undefined')
			{
				i63a2be2433sf.type = 'moz';
			}
			else if(typeof i63a2be2433sf.obj.style.KhtmlOpacity != 'undefined')
			{
				i63a2be2433sf.type = 'khtml';
			}
			else if(typeof i63a2be2433sf.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
				i63a2be2433sf.type = (i63a2be2433sf.obj.filters.length > 0 && typeof i63a2be2433sf.obj.filters.alpha == 'object' && typeof i63a2be2433sf.obj.filters.alpha.opacity == 'number') ? 'ie' : 'none';
			}
			else
			{
				i63a2be2433sf.type = 'none';
			}
			
			//change the image alt text if defined
			if(typeof arguments[3] != 'undefined' && arguments[3] != '')
			{
				i63a2be2433sf.obj.alt = arguments[3];
			}
			
			//if any kind of opacity is supported
			if(i63a2be2433sf.type != 'none')
			{
				//copy and convert fade duration argument 
				//the duration specifies the whole transition
				//but the swap63a2be2433fade is two distinct transitions
				i63a2be2433sf.length = parseInt(arguments[2], 10) * 500;
				
				//create fade resolution argument as 20 steps per transition
				//again, split for the two distrinct transitions
				i63a2be2433sf.resolution = parseInt(arguments[2], 10) * 10;
				
				//start the timer
				i63a2be2433sf.clock = setInterval('i63a2be2433sf.swap63a2be2433fade()', i63a2be2433sf.length/i63a2be2433sf.resolution);
			}
			
			//otherwise if opacity is not supported
			else
			{
				//just do the image swap
				i63a2be2433sf.obj.src = i63a2be2433sf.src;
			}
			
		}
	};
	
	
	//swap63a2be2433fade timer function
	i63a2be2433sf.swap63a2be2433fade = function()
	{
		//increase or reduce the counter on an exponential scale
		i63a2be2433sf.count = (i63a2be2433sf.fade) ? i63a2be2433sf.count * 0.9 : (i63a2be2433sf.count * (1/0.9)); 
		
		//if the counter has reached the bottom
		if(i63a2be2433sf.count < (1 / i63a2be2433sf.resolution))
		{
			//clear the timer
			clearInterval(i63a2be2433sf.clock);
			i63a2be2433sf.clock = null;
	
			//do the image swap
			i63a2be2433sf.obj.src = i63a2be2433sf.src;
	
			//reverse the fade direction flag
			i63a2be2433sf.fade = false;
			
			//restart the timer
			i63a2be2433sf.clock = setInterval('i63a2be2433sf.swap63a2be2433fade()', i63a2be2433sf.length/i63a2be2433sf.resolution);
	
		}
		
		//if the counter has reached the top
		if(i63a2be2433sf.count > (1 - (1 / i63a2be2433sf.resolution)))
		{
			//clear the timer
			clearInterval(i63a2be2433sf.clock);
			i63a2be2433sf.clock = null;
	
			//reset the fade direction flag
			i63a2be2433sf.fade = true;
			
			//reset the counter
			i63a2be2433sf.count = 1;
		}
	
		//set new opacity value on element
		//using whatever method is supported
		switch(i63a2be2433sf.type)
		{
			case 'ie' :
				i63a2be2433sf.obj.filters.alpha.opacity = i63a2be2433sf.count * 100;
				break;
				
			case 'khtml' :
				i63a2be2433sf.obj.style.KhtmlOpacity = i63a2be2433sf.count;
				break;
				
			case 'moz' : 
				//restrict max opacity to prevent a visual popping effect in firefox
				i63a2be2433sf.obj.style.MozOpacity = (i63a2be2433sf.count == 1 ? 0.9999999 : i63a2be2433sf.count);
				break;
				
			default : 
				//restrict max opacity to prevent a visual popping effect in firefox
				i63a2be2433sf.obj.style.opacity = (i63a2be2433sf.count == 1 ? 0.9999999 : i63a2be2433sf.count);
		}
	};



	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-63a2be2433-slideshow { text-align: center; width: 300px;  }');
	document.writeln('.IDX-63a2be2433-image { width: 300px; height: 200px;  }');
	document.writeln('#IDX-63a2be2433-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next63a2be2433 = 1;
	prev63a2be2433 = 25 - 1;

	document.writeln('<div id="IDX-63a2be2433-slideshow">');
	document.writeln('<div id="IDX-63a2be2433-slideshowImage">');
	document.writeln('<span><a href="" id="IDX-63a2be2433-ssImageURL" class="IDX-63a2be2433-ssLinkText"><img id="IDX-63a2be2433-ssImage" name="63a2be2433-ssImage" alt="Slideshow image" border="0"  class="IDX-63a2be2433-image" src="http://www.carolinaphotos.com/photos/918225.jpg" ></a></span>');
	document.writeln('</div>');
	document.writeln('<div id="IDX-63a2be2433-priceLine"></div>');
	document.writeln('<div id="IDX-63a2be2433-addressLine"></div>');
	document.writeln('<div id="IDX-63a2be2433-cszLine"></div>');
	document.writeln('<div id="IDX-63a2be2433-bedLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-63a2be2433-bathLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-63a2be2433-remarkLine" style="display:none;"></div>');
	
	document.writeln('</div>');

	function play63a2be2433()
	{
		
		
		urlVar63a2be2433 = '<a href="'+properties63a2be2433[c63a2be2433wi][6]+'" class="IDX-63a2be2433-ssLinkText">';
		swap63a2be2433fade(document.getElementById('IDX-63a2be2433-ssImage'), preLoad63a2be2433.src, '1', ' ');
		document.getElementById('IDX-63a2be2433-ssImageURL').href = properties63a2be2433[c63a2be2433wi][6];
		document.getElementById('IDX-63a2be2433-priceLine').innerHTML = urlVar63a2be2433+'$'+properties63a2be2433[c63a2be2433wi][0]+'</a>';
		document.getElementById('IDX-63a2be2433-addressLine').innerHTML =  urlVar63a2be2433+properties63a2be2433[c63a2be2433wi][1]+'</a>';
		document.getElementById('IDX-63a2be2433-cszLine').innerHTML = urlVar63a2be2433+properties63a2be2433[c63a2be2433wi][2]+'</a>';
		document.getElementById('IDX-63a2be2433-bedLine').innerHTML = urlVar63a2be2433+'Beds: '+properties63a2be2433[c63a2be2433wi][7]+'</a>';
		document.getElementById('IDX-63a2be2433-bathLine').innerHTML = urlVar63a2be2433+'Baths: '+properties63a2be2433[c63a2be2433wi][8]+'</a>';
		document.getElementById('IDX-63a2be2433-remarkLine').innerHTML = urlVar63a2be2433+properties63a2be2433[c63a2be2433wi][9]+'</a>';
		
		preLoad63a2be2433 = new Image();
		preLoad63a2be2433.src = properties63a2be2433[next63a2be2433][3];
		
		update63a2be2433();
		
		c63a2be2433 = setTimeout('play63a2be2433()', time63a2be2433out);	
		
		
	} // end play()
	function update63a2be2433()
	{		
		c63a2be2433wi = next63a2be2433;		
		genNext63a2be2433();
		genPrev63a2be2433();
		
	}
	function genNext63a2be2433()
	{
		next63a2be2433 = c63a2be2433wi + 1;
		if (next63a2be2433 >= 25)
			next63a2be2433 = 0;
	} // end genNext
	function genPrev63a2be2433()
	{
		prev63a2be2433 = c63a2be2433wi - 1;
		if (prev63a2be2433 < 0)
			prev63a2be2433 = 25 - 1;
	} // end genPrev

	var properties63a2be2433 = new Array(25);
	properties63a2be2433[0] = new Array('2,499,000','15025  Ramah Church RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/918225.jpg','918225','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=918225&idxID=032','5','4','Exclusive Gated Community! Augusta Homes quality throughout....');
	properties63a2be2433[1] = new Array('2,200,000','14900  Henry Harrison Stillwell DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/940363.jpg','940363','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=940363&idxID=032','7','7','The MISTY RIDGE LODGE is a complete family retreat with amen...');
	properties63a2be2433[2] = new Array('1,645,000','15720  Huntingtowne RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/938497.jpg','938497','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=938497&idxID=032','5','3','Imagine a place where the generosity of space and the natura...');
	properties63a2be2433[3] = new Array('1,300,000','14020  Island DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/789708.jpg','789708','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=789708&idxID=032','3','3','Rare private .97 acre fenced lot, I-77 exit 23, spectacular ...');
	properties63a2be2433[4] = new Array('1,250,000','14501  Hwy 73 HWY','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/963281.jpg','963281','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=963281&idxID=032','3','4','Magnificent waterfront views on this 2.5 acre lot. Natural s...');
	properties63a2be2433[5] = new Array('1,200,000','16031  North Point RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/964068.jpg','964068','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=964068&idxID=032','4','4','Exquisite landscaping with stone wall terracing. Home has be...');
	properties63a2be2433[6] = new Array('1,100,000','15245  Hus Mcginnis RD','huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/912562.jpg','912562','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=912562&idxID=032','5','5','Private pond w 25ft waterfall. Gym complete w/Steam shower/L...');
	properties63a2be2433[7] = new Array('1,080,000','15019  Beatties Ford RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/948567.jpg','948567','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=948567&idxID=032','5','4','Exquisite Private Estate on 5 acres with Guest House and Add...');
	properties63a2be2433[8] = new Array('999,900','12408  Lefferts House PL','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/924921.jpg','924921','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=924921&idxID=032','5','5','Fantastic Investment Opportunity for model home-please ask f...');
	properties63a2be2433[9] = new Array('999,000','16218  Henry LN','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/929815.jpg','929815','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=929815&idxID=032','5','4','Arguably one of the best point lots on Lake Norman. Over 320...');
	properties63a2be2433[10] = new Array('887,000','14442  Beatties Ford RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/960169.jpg','960169','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=960169&idxID=032','4','3','Plantation style 3 story home on 7.3 Acres.  Ideal to bring ...');
	properties63a2be2433[11] = new Array('875,000','14025  Sarah Ann Stephens DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/909064.jpg','909064','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=909064&idxID=032','5','5','Inside the gated comminity of Stillwell.  Incredible Bank Ho...');
	properties63a2be2433[12] = new Array('850,000','13328  Long Common PKWY','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/965298.jpg','965298','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=965298&idxID=032','5','5','Elegant custom built, 6000 sq foot home. Flowing floor plan ...');
	properties63a2be2433[13] = new Array('842,500','14111  Sarah Ann Stephens DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/971564.jpg','971564','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=971564&idxID=032','5','5','Stunning custom built home offers hrdwds through main level,...');
	properties63a2be2433[14] = new Array('839,000','16200  Weatherly WAY','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/924938.jpg','924938','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=924938&idxID=032','3','2','Beautiful lush landscaping surrounds this updated cedar wate...');
	properties63a2be2433[15] = new Array('775,000','200  Royalton PL','Huntersville, NC 282078 ','http://www.carolinaphotos.com/photos/961073.jpg','961073','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=961073&idxID=032','5','4','Stunning brick golf course home in Skybrook. Finished walkou...');
	properties63a2be2433[16] = new Array('750,000','15817  North Point RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/962532.jpg','962532','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=962532&idxID=032','3','2','Perfect sunset views grace this lovely waterfront home locat...');
	properties63a2be2433[17] = new Array('724,000','10800  Emerald Wood DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/871486.jpg','871486','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=871486&idxID=032','5','4','Unique Old World Full Brick w/Stone Accent,Cedar Shutters &a...');
	properties63a2be2433[18] = new Array('700,000','14913  Northgreen DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/950798.jpg','950798','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=950798&idxID=032','5','4','EXCEPTIONALLY WELL APPOINTED HOME INCLUDING, HARDWOOD FLOORS...');
	properties63a2be2433[19] = new Array('699,900','16100  Henry LN','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/970852.jpg','970852','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=970852&idxID=032','4','3','BEAUTIFUL wide-water. Lake Norman lilving under $1M! Enjoy w...');
	properties63a2be2433[20] = new Array('699,000','7119  Sample RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/883654.jpg','883654','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=883654&idxID=032','5','3','Incredible All Brick Home on 12 acres.  Close to Charlotte, ...');
	properties63a2be2433[21] = new Array('699,000','15722  Polonius CT','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/934650.jpg','934650','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=934650&idxID=032','5','4','STUNNING HOME IN MOST DESIRABLE \\\\\\\'THE LINKS\\\\\\\' SECTION OF...');
	properties63a2be2433[22] = new Array('675,000','12129  Eastfield RD','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/970550.jpg','970550','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=970550&idxID=032','4','3','ONE OF A KIND IN THIS LOCATION, MINUTES FROM I-485 &amp; ANY...');
	properties63a2be2433[23] = new Array('674,000','9935  Linksland DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/946417.jpg','946417','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=946417&idxID=032','4','4','FIN BSMT.FLAGSTONE ON PORCHES &amp; PATIOS.HRDWS ON MAIN,LRG...');
	properties63a2be2433[24] = new Array('650,000','10027  Coley DR','Huntersville, NC 28078 ','http://www.carolinaphotos.com/photos/965438.jpg','965438','032','http://idx.lakenormanhomeconnection.com/idx/4061/details.php?listingID=965438&idxID=032','6','5','MAGNIFICENT! PREMIER GOLF COURSE LOT W/TREMENDOUS VIEW. HDWD...');
	var urlVar63a2be2433;
	var preLoad63a2be2433 = new Image();
	preLoad63a2be2433.src = properties63a2be2433[c63a2be2433wi][3];
	onLoad = play63a2be2433();
