YE.onAvailable('categoryTitle', function() {this.innerHTML = 'Photographs by Category'});

YE.onAvailable('userHome', function() {this.innerHTML = 'Introduction'});


function addCategoryDescription() {
 var categoryDescription = {
     "Area_51_Motocross" : "Area 51 Motocross is located near Batavia, NY and is one of four tracks which are part of Western NY Racing. Each Motocross Race event at this track is listed here by race date. FREE photo galleries are marked as such. All other galleries contain photographs available for purchase. Photographs are available in many print sizes as well as Digital Downloads and can be purchased on merchandise such as mugs, cards, puzzles, stickers, T-shirts, sweatshirts, etc... Feel free to browse. Thank you for stopping by!",
     "Frozen_Ocean_Motocross" : "Frozen Ocean Motocross is located near Owasco, NY and is one of four tracks which are part of Western NY Racing. Each Motocross Race event at this track is listed here by race date. FREE photo galleries are marked as such. All other galleries contain photographs available for purchase. Photographs are available in many print sizes as well as Digital Downloads and can be purchased on merchandise such as mugs, cards, puzzles, stickers, T-shirts, sweatshirts, etc... Feel free to browse. Thank you for stopping by!",
     "Palmyra_MX_Hogback_Hill" : "Palmyra Racing Association (Hogback Hill) is located near Palmyra, NY and is one of four tracks which are part of Western NY Racing. Each Motocross Race event at this track is listed here by race date. FREE photo galleries are marked as such. All other galleries contain photographs available for purchase. Photographs are available in many print sizes as well as Digital Downloads and can be purchased on merchandise such as mugs, cards, puzzles, stickers, T-shirts, sweatshirts, etc... Feel free to browse. Thank you for stopping by!",
      "Freedom_Motocross" : "Freedom Motocross is located near Freedom, NY and is one of four tracks which are part of Western NY Racing. Each Motocross Race event at this track is listed here by race date. FREE photo galleries are marked as such. All other galleries contain photographs available for purchase. Photographs are available in many print sizes as well as Digital Downloads and can be purchased on merchandise such as mugs, cards, puzzles, stickers, T-shirts, sweatshirts, etc... Feel free to browse. Thank you for stopping by!!"
 };

  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); 
