/*-------------------------------------------------------------
	画像掲示板 投稿ボタン
	jquery
	jquery.easing.js
-------------------------------------------------------------*/
$(document).ready(function(){
	$("#entry_btn").hover(
		function(){
			$("#entry_btn").animate({top: "-50px"}, 100,"easeOutExpo");
		},
		function(){
			$("#entry_btn").animate({top: "-40px"}, 600,"easeOutElastic");
		}
	);
});
