Плавный скролл на jQuery

	$('#home .block a').click(function(e){
		e.preventDefault();
		var href = $(this).attr('href');
		if ($(href).length != 0) {
			console.log(href);
			$('html, body').animate({ scrollTop: $(href).offset().top-200 }, 500);
		}
		return false;
	});