/*------------------------------------------------------------------------------------------

	外部JSの呼び出し
document.write('<script type="text/javascript" src="/js/jquery.easingscroll.js"></script>');

------------------------------------------------------------------------------------------*/

// マウスオーバー
//------------------------------------------------------------------------------------------
$(document).ready(function(){
	$('#gNavi a img , #fNav a img , .moveUnit a img , .mOver, .imgBtn a img , form input:image').rollover();
});


// 別ウィンドウ
//------------------------------------------------------------------------------------------
$(document).ready(function(){
	$(".newwin").click(function(){
		window.open(this.href,'_blank');
		return false;
	});
});


// 返信ウィンドウ
//------------------------------------------------------------------------------------------
$(document).ready(function(){
	$("div.replyBox").css("display","none");
	$("div.replyBtn").click(function(e){
		// 引数には開閉する速度を指定します
	    $(this).next().slideToggle();
	    e.stopImmediatePropagation();
	    return false;
	});
});
