/* changes breadcrumb to link to my homepage */
var objElement = document.getElementById("breadcrumb")
if (objElement != null) {
var str = new String(objElement.innerHTML);
str = str.replace('>ericscottphotography<', '><a href="http://www.ericscottphotography.com">ericscottphotography</a><');
objElement.innerHTML = str;
}

/* changes title 'sub-cat' to 'galleries' */
YE.onDOMReady(function() {
var searchMe = YD.get("subCatGalleryTitle");
searchMe.innerHTML = searchMe.innerHTML.replace('Sub-Categories', 'Galleries');
});

/* get rid of popup photobar for ratings, different sizes */
showPhotoBar = false; 