/*============================*/
/*== Change Breadcrumb ==*/
/*============================*/

var objElement = document.getElementById("breadCrumbTrail")
if (objElement != null) {
var str = new String(objElement.innerHTML);
str = str.replace('>Barb Gates (PhotoscapeDesign)<', '>Home</a> > <a href="/galleries">Galleries</a><');
objElement.innerHTML = str;
}


/*============================*/
/*== Change Guestbook Comment ==*/
/*============================*/

function ModifyText () 
{
  if (YD.hasClass(document.body, "gallery_617021")) 
  {
    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);


/*============================*/
/*== Email ==*/
/*============================*/

function norobotmail(aUser, aDomain) { 
       document.location = "mailto:" + aUser + "@" + aDomain;
}


/*============================*/
/*== RightClick Warning ==*/
/*============================*/

rightClickWarning = "All photos are © 1999-2009 B.A. Gates - PhotoscapeDesign. All rights reserved. Unauthorized use is prohibited."


/*============================*/
/*== Smugmug Referral Code ==*/
/*============================*/

function AddReferralCode() {
var links = this.getElementsByTagName("A");
if (links && (links.length != 0)) {
var smugLink = links.item(0);
smugLink.href = "http://www.smugmug.com/?referrer=KqCWg5JS3QHGc";
}
}
YE.onAvailable('footer', AddReferralCode);


/*============================*/
/*== MOST RECENT ==*/
/*============================*/

/* //Goto Recent Gallery */
function showRecent(days)
{
  endDate = new Date();
  oneDay = 1000*60*60*24;
  startDate = new Date(endDate.getTime() - (parseInt(days) * oneDay));
  sUrl = "/date/";
  sUrl += startDate.getFullYear() + "-" + padDate(startDate.getMonth() + 1) + "-" + padDate(startDate.getDate());
  sUrl += "/";
  sUrl += endDate.getFullYear() + "-" + padDate(endDate.getMonth() + 1) + "-" + padDate(endDate.getDate());
   window.location = sUrl;
}

function padDate(datePart)
{
  if (datePart.toString().length != 1)
    return datePart
  return "0" + datePart;
}
/* //Goto Recent Gallery */


/*============================*/
/*== Remove Mouseover Text ==*/
/*============================*/

function delHover() {
  oLst = YD.getElementsBy(function(el) {return (YD.hasClass(el,'imgBorder') || YD.hasClass(el,'imgBorderOn'))},'img');
  for (i=0; i < oLst.length ; i++)  {
    if (oLst[i].title && oLst[i].title != '') oLst[i].title = '';
    if (oLst[i].alt && oLst[i].alt != '') oLst[i].alt = '';
  }
}
YE.onContentReady('bodyWrapper', function() {if (!YD.hasClass(document.body, 'smugmug_ajax')) delHover()});
onPhotoShow.subscribe(function(){YE.onAvailable('mainImage', delHover)});


