rightClickWarning = "All photos are the property of Jeff Groves. All rights reserved. Unauthorized use is prohibited."; 

function ModifyText ()
{
 if (YD.hasClass(document.body, "gallery_3547284")) 
  {
    var objElement = YD.get("comment")
    if (objElement != null) 
    {
      var str = new String(objElement.innerHTML);
      str = str.replace(/\gallery/gi, 'Guestbook');
      objElement.innerHTML = str;
    }
  }
}

YE.onAvailable("comment", ModifyText);

YE.onDOMReady(function() {
var searchMe = YD.get("subCatGalleryTitle");
searchMe.innerHTML = searchMe.innerHTML.replace('Sub-Categories', 'Galleries (Special Gallery Collections)');
});



{
    var str = this.innerHTML;
    str = str.replace(/\n/g, " ");    // get rid of linebreaks which cause problems for regular expressions in javascript
    this.innerHTML = str.replace(/^\s*<a .*?a>.*?</i, "<");
}
