$(function() {
		
		// ランキングタブパネル
		$("table#votelist").hide();
		$("div.pvrank a").click(function(){
			$("div.pvrank").css("background-color", "#ffffff");
			$("div.voterank").css("background-color", "#97D41C");
			$(this).css("color", "#000000");
			$("div.voterank a").css("color", "#ffffff");
			$("table#votelist").hide();
			$("table#pvlist").fadeIn("slow");
			return false;
		});
		$("div.voterank a").click(function(){
			$("div.voterank").css("background-color", "#ffffff");
			$("div.pvrank").css("background-color", "#97D41C");
			$(this).css("color", "#000000");
			$("div.pvrank a").css("color", "#ffffff");
			$("table#pvlist").hide();
			$("table#votelist").fadeIn("slow");
			return false;
		});
});
