$(document).ready(function() {
	
	// Text in Suchfeld bei Klick entfernen
	$(".searchterm").click(function() {
		if ($(this).val() == "Suchbegriff eingeben") $(this).attr("value","");
	});

	// Tabellenzeilen odd/even
	$("#content table").each(function() {
	  $(this).addClass("styled_table");
	  $(this).find("tr:first").addClass("first");
	  $(this).find("tr:even").addClass("even");
	  $(this).find("tr:odd").addClass("odd");
	});
	
	// zweite Menüebene ausblenden
	$("ul.second").each(function() {
		if ($(this).find("li.aktiv").length == 0) $(this).hide();
	});
	
});

