	
$(document).ready(function(){
	$("#emailButton, #emailClose").click(function(){
		if ($("#email").is(":hidden")){
			$("#email").show("slow");
		}
		else{
			$("#email").hide("slow");
		}
	});
	$("#gajemeeButton, #gajemeeClose").click(function(){
		if ($("#gajemee").is(":hidden")){
			// is reageer nog open?
			if ($("#reactie").is(":visible")){
				$("#reactie").fadeOut("slow");
			}
			$("#gajemee").fadeIn("slow");
		}
		else{
			$("#gajemee").fadeOut("slow");
		}
	});
	
});	
