rightClickWarning = "All photos are property of Daniel J. Whelchel. All rights reserved. Unauthorized use is prohibited.";
// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
    this.href = "http://www.imagesbydjw.com/";
    this.firstChild.alt = "Take Me Home";
    this.firstChild.title = "Take Me Home";
});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});

// don't want the PhotoBar popping up over your photos? Make it go below the photo.
// So far 'bottom' is the only possible setting
SM.PhotoBar.config.position = 'bottom';