//Javascript Navigation. 
//Navigation to Anchor point

$(document).ready(function() {
 
	$("#to_iso").click(function() {
	$("html, body").animate({
		scrollTop: $($(this).attr("href")).offset().top - "235"
	}, {
		duration: 1200,
		easing: "swing"
	});
		return false;
	});
	$("#to_bureau").click(function() {
	$("html, body").animate({
		scrollTop: $($(this).attr("href")).offset().top - "235"
	}, {
		duration: 1200,
		easing: "swing"
	});
		return false;
	});
	$("#to_mearke").click(function() {
	$("html, body").animate({
		scrollTop: $($(this).attr("href")).offset().top - "235"
	}, {
		duration: 1200,
		easing: "swing"
	});
		return false;
	});
	$("#to_referencer").click(function() {
	$("html, body").animate({
		scrollTop: $($(this).attr("href")).offset().top - "235"
	}, {
		duration: 1200,
		easing: "swing"
	});
		return false;
	});
	$("#to_kollega").click(function() {
	$("html, body").animate({
		scrollTop: $($(this).attr("href")).offset().top - "235"
	}, {
		duration: 1200,
		easing: "swing"
	});
		return false;
	});
});

