
//<script type="text/javascript">
FeaturedData =  new Array();
FeaturedData[0] =  new Array();
FeaturedData[0][0] = "http://clarenproject.com/GLAR/listings/300/grtrlks190753.jpg";
FeaturedData[0][1] = "listing.cfm?MLS=190753&ln=190753";
FeaturedData[0][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[0][3] = "$55,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>