$(document).ready(function() {

	//alert ("cookie bij laden pagina = " + $.cookie("theSwitch"));


	if ($.cookie("theSwitch") == null) {
		$.cookie("theSwitch", "imgmap");
		//alert ("cookie bij eerste keer laden pagina = " + $.cookie("theSwitch"));
	}

	if ($.cookie("theSwitch") == "imgmap2") {
		$('#imgmap').hide();
		$('#imgmap2').show();
	} else {
		$('#imgmap').show();
		$('#imgmap2').hide();
	};


  	$('a#nl').click( function() {
	  	$.cookie("theSwitch", "imgmap");
	  	//alert ("cookie set : " + $.cookie("theSwitch"));
    	$('#imgmap').show();
    	$('#imgmap2').hide();
   	});

	$('a#europa').click( function() {
		$.cookie("theSwitch", "imgmap2");
		//alert ("cookie set : " + $.cookie("theSwitch"));
    	$('#imgmap').hide();
    	$('#imgmap2').show();
   	});

});