jQuery(function(){

	jQuery('ul.tx-nxdekanatsbox-jquerydropdown').each(function(ulElementKey, ulElement) {

		var dropdown = new jQuery('<select />');
		dropdown.insertAfter(ulElement);
		jQuery(ulElement).css({display: 'none'});

		var optElement = jQuery('<option />');
		optElement.html('Bitte wählen Sie');
		dropdown.append(optElement);

		jQuery(ulElement).find('a').each(function(aElementKey, aElement) {
			var optElement = jQuery('<option />');
			optElement.attr('value', jQuery(aElement).attr('href'));
			optElement.html(jQuery(aElement).html());
			dropdown.append(optElement);
		});

		dropdown.change(function() {
			location.href = dropdown.attr('value');
		});

	});

});
