/*=======================*/
/*== CHANGE BREADCRUMB ==*/
/*=======================*/

YE.onContentReady('breadCrumbTrail', function() {this.innerHTML = this.innerHTML.replace('Matthew Henderson','Home')});

YE.onContentReady('breadcrumb', function() {this.innerHTML = this.innerHTML.replace('Matthew Henderson', 'Home')});

YE.onContentReady('breadCrumbTrail', function() {
    for (var i in this.childNodes) {
        if (this.childNodes[i].tagName == "A") {
            this.childNodes[i].href="/galleries";
            break;
        }
    }
});

YE.onContentReady('breadcrumb', function() {
    for (var i in this.childNodes) {
        if (this.childNodes[i].tagName == "A") {
            this.childNodes[i].href="/galleries";
            break;
        }
    }
});