var strHost = /stmarysmuseum\.ca/i;
var strURL = 'http://stmarysmuseum.ca/';

if (strHost.test(location.hostname) && location.href != strURL) {
	window.location.replace(strURL);
}

