$(document).ready(function(){
	//バナーのロールオーバー処理
	$("#web_menu img").hover(
		function(){
			$(this).fadeTo(0.1,0.7);
		},
		function(){
			$(this).fadeTo(0.1,1);
		}
	);
	$(".banner_mk img").hover(
		function(){
			$(this).fadeTo(0.1,0.7);
		},
		function(){
			$(this).fadeTo(0.1,1);
		}
	);
	//リンクの処理
	$('.links a').click(function(){
		window.open(this.href, '');
		return false;}
	);
	$('.out').click(function(){
		window.open(this.href, '');
		return false;}
	);
	//テーブルの処理
	$("table").each(function(){
		$(this).find("tr:even").addClass("even");
	});
	//タブの処理
	$("#rotate > ul").tabs(
		{ fx: {opacity:"toggle"}}).tabs("rotate",10000);
	//トップ新着情報
	$('#panel').jScrollPane({showArrows:true});
});

