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