Scroll to position via jQuery

$("#my-id").click(function() {
	$("html, body").animate({
		scrollTop: $("#target-id").offset().top
	}, 1000);
});