// change the link on the SmugMug Logo
YE.onAvailable('homelink', function(e) {
    this.href = "http://baltimorerowing.org/";
    this.firstChild.alt = "Baltimore Rowing Club";
    this.firstChild.title = "Baltimore Rowing Club";
});

// rewords the "Your Photos" characters in the toolbar header
YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/Your Photos/g),"Photo Gallery");
});