$(function() {
	
	$('ul.photofolders').each(function() {
		var index = $(this).hide();
		var select = index.after('<select><option>' + pressefotosDropDownAlleAnzeigen + '</option></select>').next();
		select.find('option:first').data('headingAndImages', select.nextAll());
		index.find('a').each(function() {
			var link = $(this);
			var heading = $(link.attr('href'));
			var option = select.append('<option>' + heading.text() + '</option>').children(':last');
			option.data('headingAndImages', heading.add(heading.nextUntil('h2')).hide());
		});
		
		select.change(function() {
			select.nextAll().hide();
			select.find('option:selected').data('headingAndImages').show();
		}).change();
	});

});

