topImages = new Array("image/madison00.jpg","image/madison01.jpg","image/madison02.jpg","image/madison03.jpg","image/madison04.jpg","image/madison05.jpg","image/madison06.jpg","image/madison07.jpg");

thisPic = 0

imgCt = topImages.length

function rotate() {
	if (document.images) {
		thisPic++
		if (thisPic == imgCt) {
			thisPic = 0
		}
		document.madison.src = topImages[thisPic]
		setTimeout("rotate()",1000)
	}
}

// ************************  Miscellaneous site specific scripts ***************************** //

function XanaWin(which, w, h) {
	popupWin = window.open(which, 'XanaWin', 'scrollbars,width='+w+',height='+h);
	popupWin.focus();
	}
	
function XanaWin2(which, w, h) {
	popupWin = window.open(which, 'XanaWin', 'width='+w+',height='+h);
	popupWin.focus();
	}
	
if (top.location != self.location) 
	{
	top.location = self.location
	}
	
window.defaultStatus="Welcome to Frost Hollow!";
