// Change Home Link (from Devbobo)
YE.onContentReady('toolbar', function ()
{
  this.innerHTML = this.innerHTML.replace(/href="http:\/\/www.smugmug.com\/([?\w&;=]+)?"/, 'href="' + webServer + '"')
});

// Change fpoulin to Home in breadcrumb
YE.onContentReady("breadCrumbTrail", ReplaceTopOfBreadcrumbWithHome);

function ReplaceTopOfBreadcrumbWithHome()
{
  var str = this.innerHTML.replace(/\n/g, " ");
  this.innerHTML = str.replace(/\>[^\<]+<\/a>/i, ">Home</a>");
}

// Duplicates home page into /galleries
function hasPath(sPath)
{
  re = new RegExp("\/" + sPath + "(\/|$)");
  return re.test(window.location)
}

if (hasPath("galleries"))
  YD.addClass(document.body, "galleries");
