
jQuery(document).ready(function(){
	jQuery("select.functie").change(
		function(){
			// taken vullen
			var self = this;
			var functie_id = jQuery("option:selected",this).val();
			jQuery.getJSON(
				SITEURL + '/wp-content/plugins/lobbus_admin/ajax.php',
				{f:"aanmelden",action:"fetch_taken",functie:functie_id},
				function(data) {
					if(data.length > 0)
					{
						jQuery(self).siblings().empty();
						jQuery(self).siblings().append(jQuery("<option value='0'></option>"));
						jQuery(data).each(function(i){
							jQuery(self).siblings().append(
								jQuery("<option value='" + this['id'] + "'>" + this['taak'] + "</option>")
							).val(0).show();
						});
					}
					else
					{
						jQuery(self).siblings().hide();
					}
				}
			);
			
			// week aanduiden
			jQuery(self).parents("fieldset").find("input:first").attr("checked","checked");
		}
	)
});
