$(function(){	/* ウィンク効果 */	$("#headerbox a img,#bannerbox a img,#mbox_in a img,#gnavibox ol li a,.paragraphT20 a img").hover(function(){		$(this).css("opacity", "0.2");		$(this).css("filter", "alpha(opacity=20)");		$(this).fadeTo("slow", 1.0);	});});$(function(){		// クリックイベントの登録	$('#toPageTop a').click(function(){				// ページトップへスクロール		$('html, body').animate({				'scrollTop': 0			}, 900, 'easeInOutExpo');				// デフォルトイベントのキャンセル		return false;		});	});
