$(document).ready(function() { 
	$("#docTypes").show();
});

$(function(){
	$('select#setDocType').selectmenu({
		style:'dropdown',
		icons: [
					{find: '.alles'},
					{find: '.nieuws'},
					{find: '.kennis'},
					{find: '.helpdesk'}
				]
	});
});


function setDocType() {
	setDoctype = $('select#setDocType option:selected').val();
	$('#docType').val(setDoctype);
	$("#result").load('/home.a.cfm?docType=' + setDoctype);
};


