/* replace glasbergen.smugmug.com with www.marcoglasbergen.nl */
function redirectPath() { 
  re = /((www.)?glasbergen.smugmug.com)/; 
  tmp = window.location.href; 
  if (re.test(tmp)) { 
    tmp = tmp.replace(re, 'www.marcoglasbergen.nl'); 
    window.location.href = tmp; 
  } 
} 
redirectPath(); 

/* separate galleries and search page */
function hasPath(sPath) {
  re = new RegExp("\/" + sPath + "(\/|$)");
  return re.test(window.location)
}
