// redirect bdarfler.smugmug.com to photos.bdarfler.com

function redirectPath() { 
  re = /((www.)?bdarfler.smugmug.com)/; 
  tmp = window.location.href; 
  if (re.test(tmp)) { 
    tmp = tmp.replace(re, 'photos.bdarfler.com'); 
    window.location.href = tmp; 
  } 
}
redirectPath();  

// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {

this.href = "http://photos.bdarfler.com";

this.firstChild.alt = "Benjamin Darfler Photography";

this.firstChild.title = "Benjamin Darfler Photography";

});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {

this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");

});