jQuery(document).ready(function(){



	$('.up_arrow').bind('click', function(){
    $('html,body').animate({scrollTop: 0}, 800);
 });
	
	
});

