function AddReferralCode() {
    var links = this.getElementsByTagName("A");
    if (links && (links.length != 0)) {
        var smugLink = links.item(0);
        smugLink.href = "http://www.smugmug.com/?referrer=8fIGbQijhVfiA";
    }
}
YE.onAvailable('footer', AddReferralCode);

function redirectPath() {
    re = /((www.)?pixoul.smugmug.com)/;
    tmp = window.location.href;
    if (re.test(tmp)) {
        tmp = tmp.replace(re, 'www.pixoulphotography.com');
        window.location.href = tmp;
    }
}
redirectPath();