// JavaScript Document

// プルダウンメニュー

$(function(){
		$("#navigation li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(200);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}); 

// テーブルのカラー

$(function(){
	$('.game-schedule-table tr:odd').addClass('color');
	$('.team-result-table tr:odd').addClass('color');
	$('.general-table tr:even').addClass('color');
});

// 過去の戦績の開閉

$(function(){
	$("#team-result h5").hover(
	  function () {
		$(this).addClass("hover");
	  },
	  function () {
		$(this).removeClass("hover");
	  }
	);
});

$(function(){
	$("#team-result h5").toggle(function(){
		$(this).addClass("close");
		$(this).next(".display").toggle();
	},
	function(){
		$(this).removeClass("close");
		$(this).next(".display").toggle();
	});
});

// メンバー詳細マークを挿入

$(function(){
	$(".member-outline .member-info h6").append('<span class="mark-detail">&nbsp;</span>');
});

