$(document).ready(function() {

	$('#gototop').click(function(){ //Id del elemento cliqueable
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});

});	
