// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {

this.href = "http://klarphotography.com/";

this.firstChild.alt = "Klar Photography";

this.firstChild.title = "Klar Photography";

});

function ModifyText ()
{
  if (YD.hasClass(document.body, "gallery_7486313"))
  {
    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);