$(document).ready(function(){


			
	$("#Butai TR:nth-child(odd)").addClass("O");
	$("#Butai TR").hover(
		function () {
			if ( !($(this).hasClass("Begin")) ) { $(this).addClass("H"); }
		}, 
		function () {
			$(this).removeClass("H");
		}
	);
	
	if ($.browser.mozilla) { $('BODY#News').css({ position:'relative', top:'-15px' }) }
	
});
