function hideBreadCrumb(){
 document.getElementById("breadcrumb").innerHTML = "";
}

/********* Redirect Home Page ************/
function hasPath(sPath){
 re = new RegExp("\/" + sPath + "(\/|$)")
 return re.test(window.location)
}

if (hasPath("galleries"))
YD.addClass(document.body, "galleries")
/****** END Redirect Home Page ************/


/****** Modify Breadcrumbs ************/

var objElement = document.getElementById("breadcrumb")
if (objElement != null) {
var str = new String(objElement.innerHTML);
str = str.replace('>Peter K. Ziminski<', '><a href="/galleries">Galleries</a><');
objElement.innerHTML = str;
}

/****** Modify for Purchase page  ************/
if (hasPath("gallery/5765876_XKRCh")){
 document.getElementById("breadcrumb").innerHTML = "";

}
/****** END Modify Breadcrumbs  ************/
