$(document).ready(function(){
$("#header ul, #footer ul,#newsTopics ul").find("li:first-child").addClass("first").end().find("li:last-child").addClass("last").end();
$("#bannerArea").find("div:first-child").addClass("first").end().find("div:last-child").addClass("last").end();
$("ul#tabList a.tab").not(':animated').click(function(){
//class="tab"のaタグがクリックされたとき
$("a.active").removeClass("active");
//class="active"からacticveを削除する
$(this).addClass("active");
//クリックされたaタグにclass="active"を付与
$("table.fairList").slideUp();
//コンテンツをスライドアップで非表示
var content_show = $(this).attr("title");
$("#"+content_show).slideDown();
//クリックされたaタグのtitle属性と同じid要素をスライドダウンで表示
});
});