// changes the name on the homepage

YE.onContentReady('userName', function() {this.innerHTML = this.innerHTML.replace('Boston Childrens Chorus', 'Boston Children\'s Chorus')});

// adds the apostrophe in the breadcrumb

YE.onDOMReady(function() {
var searchMe = YD.get("breadcrumb");
searchMe.innerHTML = searchMe.innerHTML.replace('Boston Childrens Chorus', 'Boston Children\'s Chorus');
});