function AddReferralCode() {
var links = this.getElementsByTagName("A");
if (links && (links.length != 0)) {
var smugLink = links.item(0);
smugLink.href = "http://www.smugmug.com/?referrer=GDZeZNyU8eNlI";
}
}
YE.onAvailable('footer', AddReferralCode);

// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
this.href = "http://lindy.smugmug.com/";
this.firstChild.alt = "Lindy's Pics";
this.firstChild.title = "Lindy's Pics";});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");});

