// JavaScript Document
$(function(){
	$(".vote_c li:odd").css("background","none");
});

$(function(){
	$(".vote_c").eq(0).addClass("show");
	$(".tab li").each(function(i){
		$(this).click(function(){
			$(".vote_c").removeClass("show");
			$(".vote_c").eq(i).addClass("show");
			$(this).siblings().removeClass("hover");
			$(this).addClass("hover");
		});
	});
});







