//link
var isMSIE = /*@cc_on!@*/false; 
if (isMSIE) { 
} else {
	$(function(){$('a').hover(
		function(){$(this).animate({opacity:.75},{duration:0})},
		function(){$(this).animate({opacity:1},{duration:400})});
	});
}

$(function(){
	//トップのライブを指定の数
	$(".indexlive article:nth-child(10)").nextAll().not(".more").remove();
	//最後線消す
	$(".boxr article:last").css("borderBottomStyle","none")
});

