/* Redirect user to correct domain
--------------------------------------------------------- */
function fncSetDomain() {
    var strURL = location.href.toLowerCase().indexOf("www.hershamchurches.org.uk");
    if (strURL == -1) {location.replace("http://www.hershamchurches.org.uk/")};
}

/* Execute certain functions on page load
--------------------------------------------------------- */
window.onload = function() {
    fncSetDomain();
}