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