// nextボタンとprevボタンのロールオーバーアクション

$(function(){
	// ------------------------------------------------------------------------------ 定義
	
	pageBtn = $("div.pageBtn");
	
	// ------------------------------------------------------------------------------ アニメーション
	
	pageBtn.hover
	(
		function ()
		{
			$(this).animate( {opacity:0.92}, 180, "easein" );
		},
		function ()
		{
			$(this).animate( {opacity:1}, 150, "easein" );
		}
	);
	
});
