function addCategoryDescription() {
  var categoryDescription = {
      "Stage_Photography"  : "In this category you will find photographs from different on stage events, dance shows, live performances etc. You can contact me directly for different queries.",
      "Travel_Photography"  : "In this category you will find my photographs from around the world as well as from my travels in Israel. If you find a picture you like, you are invited to contact me!",
    "Personal"  : "These galleries are devoted to my family and friends - here you can be updated on recent personal events.",
"Documentary" :"You will find here my documentary projects which includes mainly my street photography and other documentary-related projects. Listed also is Project Sunshine which is currently limited to specific viewers.","
  };

  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);