var period = 3; // fade period in seconds.  Includes 1 second fade-in and 1 second fade-out
var fcontent = new Array();

fcontent[0]="\"Wonderful! We enjoyed every minute! The whole family had a terrific time and enjoyed the luxury of the Wildwood. The hot tub was a perfect ending to a day at the lake. We'll definitely be back soon!\" <br />Lisa and Steven";
fcontent[1]="\"Staying at the Wildwood is the perfect way to spend time with family and be in nature. It is a wonderful place to be reminded of the beauty that abounds on earth.\" <br /> The Judd Family";
fcontent[2]="\"We enjoyed our stay. The cabin is beautiful and so clean. We like the setting-high on a hill and surrounded by the woods. Thanks for sharing this beauty with us.\" <br />Bob & Jackye";
fcontent[3]="\"Four adults and six kiddos had a blast! This was our last 'hurrah' for the summer. We loved the cabin - very new and nice. Thank you Clearwater Creek- lots of fun memories were made. We hope to be back.\" <br /> The Stuarts & The Stovalls";
fcontent[4]="\"This truly is a lovely cabin. We enjoyed the blessing that we could feel in this place. You have accessorized it beautifully with so many comforts. The beds are awesome!\"<br /> John and Denise ";
fcontent[5] = "\"What a wonderful place! We came here for our 25th anniversary and we loved it! Just to able to sit back and relax away from all of the rush of everyday life. I look forward to staying here again. Thank you!\" <br />Louis & Teresa";

index = 0
FadeList = []
function fade() {
FadeList[0] = setTimeout("fade()", period*2700)
for (i = 0; i <= 1000; i+=50) { // fade out.  i is in miliseconds 


FadeList[3*i/50+1] = setTimeout('document.getElementById("fscroller").style.filter = "alpha(opacity='+(1000-i)/2+')"', i) // for IE
FadeList[3*i/50+2] = setTimeout('document.getElementById("fscroller").style.MozOpacity = '+(1000-i)/1000, i) // for older firefox/mozilla versions
FadeList[3*i/50+3] = setTimeout('document.getElementById("fscroller").style.opacity = '+(1000-i)/1000, i) // for Opera, and newer firefox versions
	}
for (; i <= 2000; i+=50) { // fade in
FadeList[3*i/50+1] = setTimeout('document.getElementById("fscroller").style.filter = "alpha(opacity='+(i-1000)/2+')"', i)
FadeList[3*i/50+2] = setTimeout('document.getElementById("fscroller").style.MozOpacity = '+(i-1000)/1000, i)
FadeList[3*i/50+3] = setTimeout('document.getElementById("fscroller").style.opacity = '+(i-1000)/1000, i)
	}
FadeList[3*i/50+4] = setTimeout('document.getElementById("fscroller").innerHTML=fcontent[(index++)%fcontent.length]', 1000)			}

function CancelFade() {
	for (i = 0; i < FadeList.length; i++) {
		clearTimeout(FadeList[i])
	}
}