// JavaScript Document

$(function() {
	//news の最後のボーターを削除する
	$("#news dd:last-child").css({border:"none"});
	
	//info の最後のボーターを削除する
	$("#info li:last-child").css({border:"none"});
	
	//TOPのボタンのロールオーバー
	$("#banner img").hover(
	function () {
		$(this).stop(true, false).animate({opacity: 0.7},100);
	},
	function () {
		$(this).stop(true, false).animate({opacity: 1},100);
	});
	
	//バナーの画像にロールオーバーすると透明度をつける
	$("#info img").hover(
	function () {
		$(this).stop(true, false).animate({opacity: 0},300);
	},
	function () {
		$(this).stop(true, false).animate({opacity: 1},100);
	});
	
});




