// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
    this.href = "http://ahaas.smugmug.com/";
    this.firstChild.alt = "www.ArielHaasPhotography.com";
    this.firstChild.title = "www.ArielHaasPhotography.com";
});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});

YE.onAvailable('galleryTitle', function() {this.innerHTML = 'Portfolio'});
