
//<script type="text/javascript">
FeaturedData =  new Array();
FeaturedData[0] =  new Array();
FeaturedData[0][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks189118.jpg";
FeaturedData[0][1] = "listing.cfm?MLS=189118&ln=189118";
FeaturedData[0][2] = "Beautiful picturesque 15 acres on the Long Prairie River with almost new manufactured home in excellent condition, 300+ feet of river frontage, 30 X 48 shop/garage wired for 220,  11 X 28 enclosed three season porch and numerous other features.";
FeaturedData[0][3] = "$157,900";
FeaturedData[1] =  new Array();
FeaturedData[1][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks189251.jpg";
FeaturedData[1][1] = "listing.cfm?MLS=189251&ln=189251";
FeaturedData[1][2] = "Clean, 3 bedroom, 1 bath, 1 level home just outside of Pillager.  2 car detached garage, partially fenced back yard with patio.";
FeaturedData[1][3] = "$120,900";
FeaturedData[2] =  new Array();
FeaturedData[2][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks190809.jpg";
FeaturedData[2][1] = "listing.cfm?MLS=190809&ln=190809";
FeaturedData[2][2] = "TWO BEDROOM HOME WITH RECENTLY REMODELED KITCHEN WITH NEWER APPLIANCES, OAK CABINETS & CENTER ISLAND.  BEAUTIFUL FIREPLACE AND CATHEDRAL CEILING IN LIVING ROOM, DETACHED DOUBLE GARAGE, NICE LOT WITH MANY TREES, LARGE DECK IN BACKYARD AND MUCH MORE.";
FeaturedData[2][3] = "$109,900";
FeaturedData[3] =  new Array();
FeaturedData[3][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks171697.jpg";
FeaturedData[3][1] = "listing.cfm?MLS=171697&ln=171697";
FeaturedData[3][2] = "Immaculate 2 bedroom, 1 bath home located conveniently on 7th St NE, close to schools, churches, and parks.  The home features include newer floor coverings, hardwood floors in bedrooms, full basement,  plus an enclosed porch/sunroom with free standing fireplace.New water & sewer in 2009 and new gas high efficienty furnace in 2010.";
FeaturedData[3][3] = "$82,900";
FeaturedData[4] =  new Array();
FeaturedData[4][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks171356.jpg";
FeaturedData[4][1] = "listing.cfm?MLS=171356&ln=171356";
FeaturedData[4][2] = "2+ bedroom home with main level laundry, hardwood floors, newer kitchen, appliances included, full basement ready to finish, bathroom stubbed in, workshop.";
FeaturedData[4][3] = "$79,900";
FeaturedData[5] =  new Array();
FeaturedData[5][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks190958.jpg";
FeaturedData[5][1] = "listing.cfm?MLS=190958&ln=190958";
FeaturedData[5][2] = "Spacious 3+ bedroom home with many features including formal dining room, eat-in kitchen, 3 season front porch, den/office/hobby room, large closets, lots of additional storage, central air, updated electric, vinyl siding, and much more.  Home is centrally located close to city park, schools, and downtown.";
FeaturedData[5][3] = "$67,000";
FeaturedData[6] =  new Array();
FeaturedData[6][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks190753.jpg";
FeaturedData[6][1] = "listing.cfm?MLS=190753&ln=190753";
FeaturedData[6][2] = "Colorful 10 acres with room for animals and also some wooded land for your hunting enjoyment.  Property includes a manufactured home, double garage/pole shed and storage shed.  Property is conveniently located close to Staples.";
FeaturedData[6][3] = "$59,900";
FeaturedData[7] =  new Array();
FeaturedData[7][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks184705.jpg";
FeaturedData[7][1] = "listing.cfm?MLS=184705&ln=184705";
FeaturedData[7][2] = "Beautiful wooded lot with 2 bedroom mobile home.";
FeaturedData[7][3] = "$19,900";

FLRecordCount=FeaturedData.length;
FLIndex=randRange(1,FLRecordCount);
function FLNext(){
	if(FLIndex == FLRecordCount){
		FLIndex=1;
	} else {
		FLIndex++;
	}
	document.getElementById("propertyimage").style.backgroundImage="url("+FeaturedData[FLIndex-1][0]+")";
	document.getElementById("propertyimage").href=FeaturedData[FLIndex-1][1];
	document.getElementById("propertydescriptionlink").href=FeaturedData[FLIndex-1][1];
	document.getElementById("propertydescriptiontext").innerHTML=FeaturedData[FLIndex-1][2];
}
function FLPlay(){
	if(!window.oFLPlayer){
		FLNext();
		if(FLRecordCount > 1){
			oFLPlayer = window.setInterval(FLNext, 5000);
		}
	}
}
function randRange(a,b) {
	return a + Math.floor(Math.random()*(b-a+1));
}
if(FLRecordCount > 0){
	FLPlay();
}
//</script>