jQuery(function(){
	jQuery('.to_top a').click(function() {
		jQuery('html,body').animate({ scrollTop: 0 }, 500);
		return false;
	});
});