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