function activateBoxLinks() {
	$("#orderbox").mouseover(function () {
		$(this).css('cursor', 'pointer');
	});
	$("#orderbox").click(function() {
		window.location = "../bestilling.asp"
	});

	$("#advicebox").mouseover(function () {
		$(this).css('cursor', 'pointer');
	});
	$("#advicebox").click(function() {
		window.location = "../raadgivning.asp"
	});

	$("#pressbox").mouseover(function () {
		$(this).css('cursor', 'pointer');
	});
	$("#pressbox").click(function() {
		window.location = "../presse.asp"
	});

	$("#worldhealthbox").mouseover(function () {
		$(this).css('cursor', 'pointer');
	});
	$("#worldhealthbox").click(function() {
		window.location = "../rapporter.asp"
	});

	$("#dk-mapbox").mouseover(function () {
		$(this).css('cursor', 'pointer');
	});
	$("#dk-mapbox").click(function() {
		window.location = "../kommune.asp"
	});
}

