rightClickWarning = "All photos are the property of Jeff Kraus. All rights reserved. Unauthorized use is prohibited.";

function AddReferralCode() {
var links = this.getElementsByTagName("A");
if (links && (links.length != 0)) {
var smugLink = links.item(0);
smugLink.href = "http://www.smugmug.com/?referrer=2vLYlMWKHsvL6";
}
}
YE.onAvailable('footer', AddReferralCode);

// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {

this.href = "http://jeffk42.smugmug.com/";

this.firstChild.alt = "Jeff's Photos";

this.firstChild.title = "Jeff's Photos";

});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {

this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");

});