function redirectPath() {
re = /((www.)?magnuseklund.smugmug.com)/;
tmp = window.location.href;
if (re.test(tmp)) {
tmp = tmp.replace(re, 'smugmug.wordslikeviolence.se');
window.location.href = tmp;
}
}

redirectPath();