var strHost = /stmarysmhf\.com/i;
var strURL = 'http://www.stmarysmhf.com/';

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

