$(document).ready(function(){
	// Automatische Lightbox
	$("a img").parent().addClass("keinrahmen");
	$("a[href*='.jpg']:not([rel*='gb_imageset']):not([class*='aktionslink']) img").parent().attr("rel","gb_imageset[bildergalerie]");
	$("a[href*='.gif']:not([rel*='gb_imageset']):not([class*='aktionslink']) img").parent().attr("rel","gb_imageset[bildergalerie]");
	$("a[href*='.png']:not([rel*='gb_imageset']):not([class*='aktionslink']) img").parent().attr("rel","gb_imageset[bildergalerie]");
	$("a[href*='.jpeg']:not([rel*='gb_imageset']):not([class*='aktionslink']) img").parent().attr("rel","gb_imageset[bildergalerie]");
	$("a[href*='.JPG']:not([rel*='gb_imageset']):not([class*='aktionslink']) img").parent().attr("rel","gb_imageset[bildergalerie]");

	// Ungerade Tabellenzellen
	$("table tr:odd").addClass("ungerade");
	
	// Mehr Bilder hochladen
	$("a.mehrFelder").click(function(){
      $("#erstesFeld").clone().insertAfter(".feld");
    });
	
	// Meldungen filtern
	$(".filter .meldungenFilter").click(function() {
		$(".filter .filter-auswahl").toggle();
	});
	$(".filter :checkbox").click(function() {
		$("form.filterformular").submit();
	});
	
	// Suche wechseln
	$("#suchformular .wechsel1").hide();
	$("#suchformular .wechsel2").hide();
	$("#suchformular .aktiv").show();
	$("#suchformular a.wechselIcon").click(function() {
		var rel = $(this).attr("rel");
		$("#suchformular .wechsel1").hide();
		$("#suchformular .wechsel2").hide();
		$("#suchformular .wechsel1 input").attr("value","");
		$("#suchformular ."+rel).show();
	});

});
