rightClickWarning = "All photos are property of Erik Jacobs/Jacobs Photographic. All rights reserved. Unauthorized use is prohibited.";
// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
    this.href = "http://jacobsphotographic.smugmug.com/";
    this.firstChild.alt = "Archive Home";
    this.firstChild.title = "Archive Home";
});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});