$(document).ready(function() {
	$("#gsk_in_europa").hide();
	$("#href_europa").click(function () {
		$("#gsk_in_europa").show();
	});

	$("#uitgangspunten_gsk").hide();
	$("#href_uitgangspunten").click(function () {
		$("#uitgangspunten_gsk").show();
	});

	$("h5").each(function() {
		var header = $(this).text();
		if (header.indexOf("Informeren") >= 0) {
			$(this).siblings("ul:first").wrap("<div style='border: 1px solid #FFFF66;'></div>");
		}
		else if (header.indexOf("Inzicht vergroten") >= 0) {
			$(this).siblings("ul:first").wrap("<div style='border: 1px solid #FFCC66;'></div>");
		}
		else if (header.indexOf("Afwegen & Beslissen") >= 0) {
			$(this).siblings("ul:first").wrap("<div style='border: 1px solid #FF9933;'></div>");
		}
		else if (header.indexOf("Implementeren") >= 0) {
			$(this).siblings("ul:first").wrap("<div style='border: 1px solid #FF6600;'></div>");
		}
	});
});