// AnimeWallpaperWorld JavaScript Document
// highlight the drop down menu choice when mouse over
function highlightChoice2(id)
{
  anchor_color = "#FF6633";
  text_decoration= "underline";
  font_weight = "bold";

  var anchor = document.getElementById(id).getElementsByTagName('a');
  anchor[0].style.color = anchor_color;
  anchor[0].style.fontWeight = font_weight;
  anchor[0].style.textDecoration = text_decoration;
}

// drop down menu choice back to normal style when mouse out
function deselectChoice2(id)
{
  anchor_color = "#FF9966";
  text_decoration= "none";
  font_weight = "normal";

  var anchor = document.getElementById(id).getElementsByTagName('a');
  anchor[0].style.color = anchor_color;
  anchor[0].style.fontWeight = font_weight;
  anchor[0].style.textDecoration = text_decoration;
}
