function redirectPath() {
re = /(bandphotos.smugmug.com)/;
tmp = window.location.href;
if (re.test(tmp)) {
tmp = tmp.replace(re, 'gallery.wvuband.org');
window.location.href = tmp;
}
}
redirectPath();

