$(document).ready(function(){
	// toggleval
   // $("input").toggleVal();
   // $("textarea").toggleVal();
	// jede zweite tabellenzeile mit class "odd" versehen
	$("tr:nth-child(odd)").addClass("odd");
	// accordion
	/*jQuery('#list1').Accordion({
		active: false,
		alwaysOpen: false,
		event: 'click',
		autoheight: true,
		animated: 'easeslide'
	});*/
	
	$("a.einverstanden").click(function(){
			$("p.einverstanden-text").show("slow")
										});
});
