function addKeywordFeatured(text, description, keyword, thumbUrl)
{
  if (YD.hasClass(document.body, "homepage")) {
    divTags = YD.getElementsByClassName("boxBottom", "div", YD.get("featuredBox"));
    for (i=0; i<divTags.length; i++) {
      miniBox = document.createElement("div");
      miniBox.className = "miniBox";

      photoBox = document.createElement("div");
      photoBox.className = "photo";
      miniBox.appendChild(photoBox);

      photoLink = document.createElement("a");
      photoLink.setAttribute("href", "/keyword/" + keyword);
      photoBox.appendChild(photoLink);

      photoImg = document.createElement("img");
      photoImg.setAttribute("border", "0");
      photoImg.setAttribute("alt", text);
      photoImg.setAttribute("title", text);
      photoImg.src = thumbUrl;
      photoImg.className = "imgBorder";
      photoLink.appendChild(photoImg);

      albumTitle = document.createElement("p");
      albumTitle.className = "albumTitle";
      miniBox.appendChild(albumTitle);

      albumLink = document.createElement("a");
      albumLink.className = "nav";
      albumLink.setAttribute("href", "/keyword/" + keyword);
      albumTitle.appendChild(albumLink);
      albumLinkText = document.createTextNode(text);
      albumLink.appendChild(albumLinkText);

      albumDescription = document.createElement("p");
      albumDescription.className = "description";
      miniBox.appendChild(albumDescription);

      albumDescriptionText = document.createTextNode(description);
      albumDescription .appendChild(albumDescriptionText);

      spacerDiv = document.createElement("div");
      spacerDiv.className = "spacer";
      miniBox.appendChild(spacerDiv);

      divTags[i].insertBefore(miniBox, divTags[i].childNodes[1]);

      break;
    }
  }
}