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)});

function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}

if (hasPath("galleries"))
YD.addClass(document.body, "galleries");

function addCategoryDescription() {
 var categoryDescription = {
     "Weddings" : "You know that your wedding day in the most important day of your new lives together.  We know that capturing your wedding images the way you want is the key to lifelong memories.  We offer a variety of services starting at $2000.  Engagement pictures are free and we offer print, album and digital services to fit every need.  Contact us to arrange a time to discuss your dreams!",
     "Portraits" : "Individual, group, or family portraits; on location or we can book studio time.  Let us capture your image the way you imagine it?  Send us an email and we’ll work out the details.  Your pictures offered on-line, in print packages, and in a variety of commercial products ranging from t-shirts to calendars.  All portrait sessions include custom enhancement and special effects can also be included.  We’ll even do a portrait of your pet!",
      "Events" : "Class reunion, retirement ceremony, awards dinner, office outing, or even a bowling league tournament?  We can capture your special event!  Images hosted here in a locked gallery for direct printing or download within 24 hours, custom print packages, posters, T-Shirts or????  Don't have another event without pictures!",
      "About_Us" : "Photography Unlimited is owned by Chris and Lori Carver.  We use state-of-the-art digital photography equipment and the best photo labs in the US; you can be sure your images will be of the highest quality.  Please look through our galleries.  We hope you enjoy our images as much as we did making them!  We are located in Tampa, Florida and available for travel anywhere in the US. " 
 };

  if ((YD.hasClass(document.body, "category")) && (!YD.hasClass(document.body, "subcategory"))) {

    re = /category_(\S+)/i;
    re.exec(document.body.className);

    breadCrumb = YD.get("breadcrumb");
    if (breadCrumb && categoryDescription[RegExp.$1]) {
      divTag = document.createElement("div");
      divTag.className = "categoryDescription";
      divTag.appendChild(document.createTextNode(categoryDescription[RegExp.$1]));
      breadCrumb.parentNode.insertBefore(divTag, breadCrumb.nextSibling);
    }
  }
  if (YD.hasClass(document.body, "homepage")) {
    re = /\>([\w\-]+)<\/a>/i;

    divTag = YD.get("categoriesBox");
   if (divTag) {
      divTags = YD.getElementsByClassName("albumTitle", "p", divTag);

      for (i=0; i<divTags.length; i++) {
       re.exec(divTags[i].innerHTML);
        if (categoryDescription[RegExp.$1] != undefined) {
          pTag = document.createElement("p");
          pTag.className = "categoryDescription";
          pTag.appendChild(document.createTextNode(categoryDescription[RegExp.$1]));
          divTags[i].parentNode.insertBefore(pTag, divTags[i].nextSibling);
        }
      }
    }
  }
}
YE.addListener(window, "load", addCategoryDescription); 