//redirect if coming from any other domain names
var loc = window.location.href;
if (loc.toLowerCase().indexOf("http") ==-1) {
	// do nothing because this development testing
} else if (loc.toLowerCase().indexOf("marignymanorhouse") ==-1) {
	window.location = "http://www.marignymanorhouse.com/";
}

//navigation image rollovers for secondary pages
var imagesLoaded = null;

if (document.images) { // Preloader Active Images	
	navSubBug = new Object;
	navSubBug.on = new Image();
	navSubBug.on.src = "images/nav_sub_bug.gif"; 
	navSubBug.off = new Image();
	navSubBug.off.src = "images/pixel.gif";
	imagesLoaded = true;	
}

function navSubBugOn(imgName) {
	if ((document.images) && imagesLoaded) {
		document[imgName].src = navSubBug.on.src;
	}
}

function navSubBugOff(imgName) {
	if ((document.images) && imagesLoaded) {
		document[imgName].src = navSubBug.off.src;
	}
}
