/* ============================================================
tag.js
 javascripts for tag page
 http://books.livedoor.com/tag/xxx
  $Id: $
============================================================ */

$(function(){
  $("a#dispChange").click(function() {
    var type = $("#dispType ul").css("display");
    if (type == "block") {
      $("#dispType ul").css("display","none");
    } else {
      $("#dispType ul.tagMenu").css("display","block");
    }
  });
  $("div#dispType ul li").mouseover(function() {
      $(this).css("background", "#4ab");
      var anc = $(this).children();
      anc.css("color", "#fff");
  });
  $("div#dispType ul li").mouseout(function() {
      $(this).css("background", "#fff");
      var anc = $(this).children();
      anc.css("color", "#4ab");
  });
});
