var target = '';

if(target!="") {
	$(document).ready(function() {
		if($("#"+target)) {
			var pos = $("#"+target).offset();
			if(pos) {
				var scrollpos = pos.top - 105;
				//$(document).scrollTop(scrollpos);
				$("html, body").animate({scrollTop: scrollpos}, 900);				
			}
			else {
				console.error('ID '+href+' not found in DOM');
			}
		}
	});
}

$(document).ready(function() {
	$("a[href^='#']").click(function(e) {
		var href = $(this).attr("href");
		if($(href)) {
			e.preventDefault();
			var pos = $(href).offset();
			if(pos) {
				var scrollpos = pos.top - 105;
				//$(document).scrollTop(scrollpos);
				$("html, body").animate({scrollTop: scrollpos}, 900);
			}
			else {
				console.error('ID '+href+' not found in DOM');
			}
		}
	})
})