<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
	if (init==true) with (navigator) {
		if ((appName=="Netscape") && (parseInt(appVersion)==4)) {
			document.MM_pgW=innerWidth;
			document.MM_pgH=innerHeight;
			onresize=MM_reloadPage;
		}
	}
	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH)
		location.reload();
	}
MM_reloadPage(true);

// don't forget to change totalpics variable if more are added!!
var totalpics = 28;
var now = new Date()
var sec = now.getSeconds()
var picnum = 1; //sec % totalpics;
var des = new Array('Built-In Cabinets','Cedar Shadow-Box Facia','Cultured Stone','Custom Designed Gable Glass','Door - Entry','Door - Raised Panel Redwood Garage','Double Rail','Dovetail Corner','Fireplace','Gable Dormer','Gable Porch','Interior Living','Knotty Pine Porch Ceiling','Log Arch','Log Floor Joists','Log Garage','Pealed Interior Finish','Mantle - Live Edge','Mantle - Milled Edge','Saddle Notch Corner','Shed Porch','Sikkens Wood Finishes','Stairs - Log','Stairs - Timber-Tread','Tree Porch Post','Tree Post','Window - Double Hung','Window - French Casement');
//picnum +=1;

function loadnext() {
	picnum = picnum + 1;
	if (picnum > totalpics) {
		picnum = 1;
	}
	photonew = new Image();
	photonew.src = 'Images/Features/Features' + picnum + '.jpg';	
	document.images['features'].src=photonew.src;
	var output = des[picnum-1];
	FeatureRotation.innerHTML='<font size=4 color=FFFFFF>'+output+'</font>';
}

timerID = setInterval('loadnext()', 4000)
-->