jQuery(document).ready(function($) {

//Giften form
	$('#li-3-14,#li-3-16').hide();
	
	$("#tot-het-afschrijven-van").change(function(){
		if ($(this).val() == "ander_bedrag")
		{
			$("#li-3-14").show("slow");
		}
		else 
		{
			$("#li-3-14").hide("slow");
		}
	});
	
	$("#Dit-bedrag-is-ten-behoeve-van").change(function(){
		if ($(this).val() == "werker" || $(this).val() == "onTracker")
		{
			$("#li-3-16").show("slow");
		}
		else 
		{
			$("#li-3-16").hide("slow");
		}
	});
	

//Faq  
	/*if (window.location.hash != "") {
			$(window.location.hash).fadeIn(1000);
		} else {
			$("div.container div:first").show();
		}
		
		$("div.list a").click(function(e) {
			$("div.container div:visible").hide();
			$(this.hash).fadeIn();
			e.preventDefault();
		});		
		*/

});







