function showAdres(){
	var check = $("#adres_search").css('display');
	if(check == 'none'){
		$("#adres_search").fadeIn("slow");
		$("#postcode").fadeOut("slow");
		$("#postcode_search").fadeOut("slow");
		$("#totaal").fadeOut("slow");
	}else{
		$("#adres_search").fadeOut("slow");
		$("#postcode").fadeIn("slow");
		$("#totaal").fadeIn("slow");
	}
}
