/*==============================*/
/* the subCategory descriptions */
/*==============================*/
function addSubCatDescription() {
  var SubCatDescription = {
      "Washington_Alumni_Chapter_Photos"  : "Portal for the dissemination of images related to the Washington Alumni Chapter of Kappa Alpha Psi Fraternity, Inc.",
      "Iota_Delta_Photos"  : "The 30th Anniversary Celebration of the University of Texas Chapter, the Iota Delta of Kappa Alpha Psi Fraternity, Inc., Southwestern Province.",
      "Simply_Swing"  : "Hand Dance, as it is affectionately referred to by Washingtonians, can be traced as far back as the 1920's, when Harlem gave birth to the Lindy Hop. From the Lindy Hop emerged the Jitterbug in the 30's and during the 50's, D.C. developed its own version and named it Hand Dance. From the early 50's to mid 60's, Hand Dance was the hub of Washingtonians dancing experience. It features hand holding and other forms of graceful embracing while executing simple to complex turns and moves. In the 80's, following an extended hiatus, Hand Dance resurfaced and has gradually moved to reclaim its place in the Washington dance community. It has now been designated the Official Dance form of Washington DC. Please enjoy these images from the graduating classes of Kevin Murray's Simply Swing Hand Dance School, an affiliate of Smooth & EZ Hand Dancing Institute of Washington DC!",
      "The_Butcher_Family_Reunion_2007"  : "This album documents and commerates the 2007 Butcher Family Reunion that took place the weekend of 27 July 2007 in Richmond, Virginia at the Sheraton Park South and Pocahontas State Park.",
      "Personal"  : "The house and lineage of Otis Brooks.",
      "My_Genres"  : "This album contains pictures which span some five years of my attempts at photography. In late 2006, I realized that I tend to shoot according to approximately six photo genres. So, this album seeks to show some of my 'best' photos from these genres, which are Nightshots, 'Scapes' (Skyscapes/Cityscapes/Landscapes/Seascapes), Architecture, Perspectives (Linearity/Curvature), People (Social Gatherings/Family Gatherings/Kids/Candid Shots/Portraits) and Events (Documentary/Crowds/Group Shots/Performances).",
      "University_of_Texas_Black_Alumni_Reunion_2007"  : "Please enjoy these images from The University of Texas Black Alumni Reunion, 12 - 13 October 2007 in Ausitn, Texas. This year's Reunion was notable in that the newest dormatory on campus, Almetris Duren Hall, honoring the life and legacy of Almetris 'Mama' Duren, was dedicated during a celebration on 12 October in the dorm's courtyard. I took several shots from the dedication as well as from the Black Alumni Legacy Dinner that evening and Saturday's activities which included the 'Soul Night' Revisited party Saturday night."
  };

  if (YD.hasClass(document.body, "subcategory"))
  {
    re = /subcategory_(\S+)/i;
    re.exec(document.body.className);

    albumtitle = YD.get("subCatGalleryTitle");
    if (albumtitle && SubCatDescription[RegExp.$1]) {
      divTag = document.createElement("div");
      divTag.className = "SubCatDescription";
      divTag.appendChild(document.createTextNode(SubCatDescription[RegExp.$1]));
      albumtitle.parentNode.insertBefore(divTag, albumtitle.nextSibling);
    }
  }
  if (!YD.hasClass(document.body, "homepage")) {
    re = /\>([\w\-]+)<\/a>/i;

    divTag = YD.get("galleriesBox");
    if (divTag) {
      divTags = YD.getElementsByClassName("subCatGalleryTitle", "p", divTag);

      for (i=0; i<divTags.length; i++)  {
        re.exec(divTags[i].innerHTML);
        if (SubCatDescription[RegExp.$1] != undefined) {
        pTag = document.createElement("p");
        pTag.className = "SubCatDescription";
        pTag.appendChild(document.createTextNode(SubCatDescription[RegExp.$1]));
        divTags[i].parentNode.insertBefore(pTag, divTags[i].nextSibling);
        }
      }
    }
  }
}
YE.addListener(window, "load", addSubCatDescription);

function doOnLoad() {
  if (window.AlbumID && (window.AlbumID == "5062515")) //
  removeLinkFromImg();
}

function removeLinkFromImg() {
  oList = YD.getElementsByClassName("photo", "div");

  for (i=0; i < oList.length ; i++) {
    if (oList[i].childNodes) {
      oList[i].firstChild.removeAttribute("href");
      oList[i].firstChild.firstChild.removeAttribute("alt");
      oList[i].firstChild.firstChild.removeAttribute("title");
    }
  }
}

function ModifyText ()
{
  if (YD.hasClass(document.body, "gallery_5053791")) 
  {
    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);