/* Make the SM link in the footer a referral link */
function AddReferralCode()
{
  var links = this.getElementsByTagName("A");
  if (links && (links.length != 0))
  {
    var smugLink = links.item(0);
    smugLink.href = "http://www.smugmug.com/?referrer=z6NplvufGfaJk";
  }
}
YE.onAvailable('footer', AddReferralCode);

function spamSucks(s1, s2) { document.location = "mailto:" + s1 + "@" + s2; }

//==============Guest Book Stuff================
// Changes "Gallery Comments" to "Guestbook Comments"
function ModifyText ()
{
  if (YD.hasClass(document.body, "gallery_7827826"))
  {
    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);
// Makes the picture "unclickable"
YE.onContentReady("image_507096151", function () {this.parentNode.href="javascript:void(0);"});
//=========End Guest Book Comments================

