	
$(document).ready(function(){
	$("#reactieButton, #reactieClose").click(function(){
		if ($("#reactie").is(":hidden")){
			// Is gajemee nog open?
			if ($("#gajemee").is(":visible")){
				$("#gajemee").fadeOut("slow");
			}
			$("#reactie").fadeIn("slow");
		}
		else{
			$("#reactie").fadeOut("slow");
		}
	});
});	
