function setURL() {

	var strURL = [];
	strURL[0] = 'http://stmarysmuseum.ca/home.html';
	strURL[1] = 'http://www.stmarysmuseum.ca/home.html';
	strURL[2] = 'http://stmarysmuseum.ca/index.html';
	strURL[3] = 'http://www.stmarysmuseum.ca/index.html';

	var newURL = 'http://stmarysmuseum.ca';

	for (i = 0; i < strURL.length; i++) {
		if (location.href == strURL[i]) {
			window.location.replace(newURL);
		}
	}
}

if (document.getElementsByTagName && document.createElement) {
    setURL();
}
