<!--//
function preloadImages() {
	if (document.images) {
		var thecottage_over = newImage("images/nav_thecottage_on.gif");
		var thelocation_over = newImage("images/nav_thelocation_on.gif");
		var contactus_over = newImage("images/nav_contactus_on.gif");
		var home_over = newImage("images/nav_home_on.gif");
	}
}
	
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function roll(state, that) {
	if (document.images) {
		var endTag = (state == "on") ? "_on.gif" : ".gif";
		document[that].src = "images/nav" + "_" + that + endTag;
	}
}

function popWindow(theURL, winName, features) {
	window.open(theURL, winName, features);
}
//-->
