function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
} 

if (hasPath("galleries"))
YD.addClass(document.body, "galleries");

// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
    this.href = "http://www.flight1photo.com/";
    this.firstChild.alt = "Flight 1 Photography";
    this.firstChild.title = "Flight 1 Photography";
});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});