jQuery(document).ready(function($) {
	$(".a-top").click(function(event){		
		event.preventDefault();
		$('html,body').animate({scrollTop:0}, 500);
        return false;
	});
});
