	// IDX Broker Slideshow version 2.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 time2111096b6eout = 8000;
	var c2111096b6ewi = 0;
	
	// i2111096b6esf1.11 :: Image swap-fade 
	// *****************************************************
	// DOM scripting by brothercake -- http://www.brothercake.com/
	//******************************************************
	//global object
	var i2111096b6esf = { 'clock' : null, 'fade' : true, 'count' : 1 }
	
	
	//swap2111096b6efade setup function
	function swap2111096b6efade()
	{
		//if the timer is not already going
		if(i2111096b6esf.clock == null)
		{
			//copy the image object 
			i2111096b6esf.obj = arguments[0];
			
			//copy the image src argument 
			i2111096b6esf.src = arguments[1];
			
			//store the supported form of opacity
			if(typeof i2111096b6esf.obj.style.opacity != 'undefined')
			{
				i2111096b6esf.type = 'w3c';
			}
			else if(typeof i2111096b6esf.obj.style.MozOpacity != 'undefined')
			{
				i2111096b6esf.type = 'moz';
			}
			else if(typeof i2111096b6esf.obj.style.KhtmlOpacity != 'undefined')
			{
				i2111096b6esf.type = 'khtml';
			}
			else if(typeof i2111096b6esf.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
				i2111096b6esf.type = (i2111096b6esf.obj.filters.length > 0 && typeof i2111096b6esf.obj.filters.alpha == 'object' && typeof i2111096b6esf.obj.filters.alpha.opacity == 'number') ? 'ie' : 'none';
			}
			else
			{
				i2111096b6esf.type = 'none';
			}
			
			//change the image alt text if defined
			if(typeof arguments[3] != 'undefined' && arguments[3] != '')
			{
				i2111096b6esf.obj.alt = arguments[3];
			}
			
			//if any kind of opacity is supported
			if(i2111096b6esf.type != 'none')
			{
				//copy and convert fade duration argument 
				//the duration specifies the whole transition
				//but the swap2111096b6efade is two distinct transitions
				i2111096b6esf.length = parseInt(arguments[2], 10) * 500;
				
				//create fade resolution argument as 20 steps per transition
				//again, split for the two distrinct transitions
				i2111096b6esf.resolution = parseInt(arguments[2], 10) * 10;
				
				//start the timer
				i2111096b6esf.clock = setInterval('i2111096b6esf.swap2111096b6efade()', i2111096b6esf.length/i2111096b6esf.resolution);
			}
			
			//otherwise if opacity is not supported
			else
			{
				//just do the image swap
				i2111096b6esf.obj.src = i2111096b6esf.src;
			}
			
		}
	};
	
	
	//swap2111096b6efade timer function
	i2111096b6esf.swap2111096b6efade = function()
	{
		//increase or reduce the counter on an exponential scale
		i2111096b6esf.count = (i2111096b6esf.fade) ? i2111096b6esf.count * 0.9 : (i2111096b6esf.count * (1/0.9)); 
		
		//if the counter has reached the bottom
		if(i2111096b6esf.count < (1 / i2111096b6esf.resolution))
		{
			//clear the timer
			clearInterval(i2111096b6esf.clock);
			i2111096b6esf.clock = null;
	
			//do the image swap
			i2111096b6esf.obj.src = i2111096b6esf.src;
	
			//reverse the fade direction flag
			i2111096b6esf.fade = false;
			
			//restart the timer
			i2111096b6esf.clock = setInterval('i2111096b6esf.swap2111096b6efade()', i2111096b6esf.length/i2111096b6esf.resolution);
	
		}
		
		//if the counter has reached the top
		if(i2111096b6esf.count > (1 - (1 / i2111096b6esf.resolution)))
		{
			//clear the timer
			clearInterval(i2111096b6esf.clock);
			i2111096b6esf.clock = null;
	
			//reset the fade direction flag
			i2111096b6esf.fade = true;
			
			//reset the counter
			i2111096b6esf.count = 1;
		}
	
		//set new opacity value on element
		//using whatever method is supported
		switch(i2111096b6esf.type)
		{
			case 'ie' :
				i2111096b6esf.obj.filters.alpha.opacity = i2111096b6esf.count * 100;
				break;
				
			case 'khtml' :
				i2111096b6esf.obj.style.KhtmlOpacity = i2111096b6esf.count;
				break;
				
			case 'moz' : 
				//restrict max opacity to prevent a visual popping effect in firefox
				i2111096b6esf.obj.style.MozOpacity = (i2111096b6esf.count == 1 ? 0.9999999 : i2111096b6esf.count);
				break;
				
			default : 
				//restrict max opacity to prevent a visual popping effect in firefox
				i2111096b6esf.obj.style.opacity = (i2111096b6esf.count == 1 ? 0.9999999 : i2111096b6esf.count);
		}
	};



	
	document.writeln('<style type="text/css" media="all">');
	document.writeln('#IDX-2111096b6e-slideshow { text-align: center; width: 480px;  }');
	document.writeln('.IDX-2111096b6e-image { width: 400px; height: 300px;  }');
	document.writeln('#IDX-2111096b6e-slideshowImage span { text-align: center; }');
	document.writeln('</style>');
	var next2111096b6e = 1;
	prev2111096b6e = 25 - 1;

	document.writeln('<div id="IDX-2111096b6e-slideshow">');
	document.writeln('<div id="IDX-2111096b6e-slideshowImage">');
	document.writeln('<span><a href="" id="IDX-2111096b6e-ssImageURL" class="IDX-2111096b6e-ssLinkText"><img id="IDX-2111096b6e-ssImage" name="2111096b6e-ssImage" alt="Slideshow image" border="0"  class="IDX-2111096b6e-image" src="http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/076/20929976.jpg" ></a></span>');
	document.writeln('</div>');
	document.writeln('<div id="IDX-2111096b6e-priceLine"></div>');
	document.writeln('<div id="IDX-2111096b6e-addressLine"></div>');
	document.writeln('<div id="IDX-2111096b6e-cszLine"></div>');
	document.writeln('<div id="IDX-2111096b6e-bedLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-2111096b6e-bathLine" style="display:none;"></div>');
	document.writeln('<div id="IDX-2111096b6e-remarkLine" style="display:none;"></div>');
	
	document.writeln('</div>');

	function play2111096b6e()
	{
		
		
		urlVar2111096b6e = '<a href="'+properties2111096b6e[c2111096b6ewi][6]+'" class="IDX-2111096b6e-ssLinkText">';
		swap2111096b6efade(document.getElementById('IDX-2111096b6e-ssImage'), preLoad2111096b6e.src, '1', ' ');
		document.getElementById('IDX-2111096b6e-ssImageURL').href = properties2111096b6e[c2111096b6ewi][6];
		document.getElementById('IDX-2111096b6e-priceLine').innerHTML = urlVar2111096b6e+'$'+properties2111096b6e[c2111096b6ewi][0]+'</a>';
		document.getElementById('IDX-2111096b6e-addressLine').innerHTML =  urlVar2111096b6e+properties2111096b6e[c2111096b6ewi][1]+'</a>';
		document.getElementById('IDX-2111096b6e-cszLine').innerHTML = urlVar2111096b6e+properties2111096b6e[c2111096b6ewi][2]+'</a>';
		document.getElementById('IDX-2111096b6e-bedLine').innerHTML = urlVar2111096b6e+'Beds: '+properties2111096b6e[c2111096b6ewi][7]+'</a>';
		document.getElementById('IDX-2111096b6e-bathLine').innerHTML = urlVar2111096b6e+'Baths: '+properties2111096b6e[c2111096b6ewi][8]+'</a>';
		document.getElementById('IDX-2111096b6e-remarkLine').innerHTML = urlVar2111096b6e+properties2111096b6e[c2111096b6ewi][9]+'</a>';
		
		preLoad2111096b6e = new Image();
		preLoad2111096b6e.src = properties2111096b6e[next2111096b6e][3];
		
		update2111096b6e();
		
		c2111096b6e = setTimeout('play2111096b6e()', time2111096b6eout);	
		
		
	} // end play()
	function update2111096b6e()
	{		
		c2111096b6ewi = next2111096b6e;		
		genNext2111096b6e();
		genPrev2111096b6e();
		
	}
	function genNext2111096b6e()
	{
		next2111096b6e = c2111096b6ewi + 1;
		if (next2111096b6e >= 25)
			next2111096b6e = 0;
	} // end genNext
	function genPrev2111096b6e()
	{
		prev2111096b6e = c2111096b6ewi - 1;
		if (prev2111096b6e < 0)
			prev2111096b6e = 25 - 1;
	} // end genPrev

	var properties2111096b6e = new Array(25);
	properties2111096b6e[0] = new Array('550,000','1400  Lloyd Ave','Santa Rosa, CA 95407 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/076/20929976.jpg','20929976','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20929976&idxID=047','3','1','Great country property with plenty of potential. See the bea...');
	properties2111096b6e[1] = new Array('595,000','663  Todd Rd','Santa Rosa, CA 95407 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/026/20921226.jpg','20921226','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20921226&idxID=047','3','2','3 bed 1 1/2 bath vintage farm house on 10 flat usable acres ...');
	properties2111096b6e[2] = new Array('650,000','448  Seavey Rd','Petaluma, CA 94952 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/047/20837447.jpg','20837447','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20837447&idxID=047','3','1','Beautiful,level property on very private setting. Majestic p...');
	properties2111096b6e[3] = new Array('695,000','818  Dry Creek Rd','Healdsburg, CA 95448 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/048/20904748.jpg','20904748','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20904748&idxID=047','2','2','6 acre vineyard/residence located in the heart of Dry Creek ...');
	properties2111096b6e[4] = new Array('795,000','3301  Phillips Ave','Santa Rosa, CA 95407 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/047/20822347.jpg','20822347','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20822347&idxID=047','4','2','A truly unique &amp; beautiful ranch! 5+/- usable acres plus...');
	properties2111096b6e[5] = new Array('799,000','881 W Railroad Ave','Cotati, CA 94931 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/059/20914559.jpg','20914559','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20914559&idxID=047','3','2','This spacious ranch has been in the same family for over 50 ...');
	properties2111096b6e[6] = new Array('999,000','21250  Burndale Rd','Sonoma, CA 95476 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/016/20920516.jpg','20920516','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20920516&idxID=047','2','1','10+ level acres of Sonoma Wine Country ideally located just ...');
	properties2111096b6e[7] = new Array('999,000','3645  Middle Two Rock Rd','Petaluma, CA 94952 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/028/20924128.jpg','20924128','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20924128&idxID=047','6','2','Fabulous 33 ac. parcel. Great for pasture, livestock, horses...');
	properties2111096b6e[8] = new Array('1,100,000','2423  Gravenstein Hwy','Sebastopol, CA 95472 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/086/20916586.jpg','20916586','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20916586&idxID=047','2','1','Stunning 12 acre property with 1890 Vintage farmhouse.  Prop...');
	properties2111096b6e[9] = new Array('1,149,000','7610  Two Rock Rd','Petaluma, CA 94952 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/063/20922763.jpg','20922763','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20922763&idxID=047','2','1','This  Historical Property which is known for the name Two Ro...');
	properties2111096b6e[10] = new Array('1,250,000','7000  Foothill Ranch Rd','Santa Rosa, CA 95404 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/015/20930615.jpg','20930615','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20930615&idxID=047','3','3','Magnificent Views and Privacy.  10 private acres with both o...');
	properties2111096b6e[11] = new Array('1,295,000','5635  Lone Pine Rd','Sebastopol, CA 95472 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/074/20915274.jpg','20915274','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20915274&idxID=047','2','1','Gorgeous oaks adorn these 36.7+/- usable acres set in a beau...');
	properties2111096b6e[12] = new Array('1,349,999','3408  Kings Hill Rd','Santa Rosa, CA 95404 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/026/20918226.jpg','20918226','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20918226&idxID=047','3','2','40+ Acre Spectacular view parcel with majestic views of Mt.S...');
	properties2111096b6e[13] = new Array('1,350,000','345  Highway 128 (aka River) Rd','Geyserville, CA 95441 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/050/20926450.jpg','20926450','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20926450&idxID=047','3','2','In the Heart of Alexander Valley. Walking distances to the q...');
	properties2111096b6e[14] = new Array('1,375,000','41015  River Rd','Cloverdale, CA 95425 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/022/20924322.jpg','20924322','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20924322&idxID=047','3','3','very well priced 14+ acres with 9 planted to Cab/Sauv grapes...');
	properties2111096b6e[15] = new Array('1,395,000','24160  Turkey Rd','Sonoma, CA 95476 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/018/20915318.jpg','20915318','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20915318&idxID=047','3','2','Vineyard, home, office and barns. Zoned DA (allows winery us...');
	properties2111096b6e[16] = new Array('1,395,000','11940  Old Redwood Hwy','Healdsburg, CA 95448 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/053/20821053.jpg','20821053','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20821053&idxID=047','3','2','Huge price drop! 2 parcels 11+ acres.  10+/- planted to Sauv...');
	properties2111096b6e[17] = new Array('1,450,000','4232  Grange Rd','Santa Rosa, CA 95404 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/061/20920861.jpg','20920861','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20920861&idxID=047','4','1','This thirty-six acre parcel is a classic example of the best...');
	properties2111096b6e[18] = new Array('1,550,000','4410  Thomas Rd','Sebastopol, CA 95472 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/001/20920201.jpg','20920201','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20920201&idxID=047','5','3','Lovely 12.36 acres of gently rolling land with views of moun...');
	properties2111096b6e[19] = new Array('1,595,000','5955  Sweetwater Springs Rd','Healdsburg, CA 95448 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/074/20821974.jpg','20821974','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20821974&idxID=047','3','1','Views! 95.98 Acres m/l Chalet home approximately 25 minutes ...');
	properties2111096b6e[20] = new Array('1,599,000','6443  Stony Point Rd','Cotati, CA 94931 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/054/20926054.jpg','20926054','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20926054&idxID=047','3','2','Super ag set up. Useable acreage, rolling hills with valley ...');
	properties2111096b6e[21] = new Array('1,750,000','2600  Chileno Valley Rd','Petaluma, CA 94952 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/091/20923491.jpg','20923491','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20923491&idxID=047','4','1','Back on the market! This +/- 73 acre property is priced to s...');
	properties2111096b6e[22] = new Array('1,899,000','22000  Burndale Rd','Sonoma, CA 95476 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/034/20830234.jpg','20830234','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20830234&idxID=047','4','3','Close to 10 acres of vines planted in Cabernet Sauvignon. Ow...');
	properties2111096b6e[23] = new Array('1,995,000','3485  Porter Creek Rd','Santa Rosa, CA 95404 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/079/20923479.jpg','20923479','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20923479&idxID=047','3','2','65 Acre ranch w/three homes in the East Santa Rosa hills,APN...');
	properties2111096b6e[24] = new Array('1,999,000','5301  128 Hwy','Geyserville, CA 95441 ','http://mediac.rapmls.com/norcalmls/listingpics/bigphoto/025/20909225.jpg','20909225','047','http://www.sonoma.idxco.com/idx/3803/details.php?listingID=20909225&idxID=047','2','1','Beautifully manicured 14+-acre vineyard planted to Chardonna...');
	var urlVar2111096b6e;
	var preLoad2111096b6e = new Image();
	preLoad2111096b6e.src = properties2111096b6e[c2111096b6ewi][3];
	onLoad = play2111096b6e();
