/*scroll*/
$(function(){
// page scroll
	jQuery.easing.quart = function(x, t, b, c, d){
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	};
	
	
	if($('#goPageTop a#p_back').length){
		$('#goPageTop a:odd').click(function(){
			$('html,body').animate({
				scrollTop:0
			}, 300, 'quart');
			return false;
		});
	}else{
		$('#goPageTop a').click(function(){
			$('html,body').animate({
				scrollTop:0
			}, 300, 'quart');
		return false;
	});
}
});
