jQuery(document).ready( function() {
	// ANSPRECHPARTNER ACCORDION
	jQuery("#asp_liste").accordion({
		autoHeight: false,
		navigation: true,
		header: "> span > h3",
		active: 0,
		animated: 'bounceslide'
	});
	jQuery("#asp_liste a").each(function(){
		if($(this).attr("href")=="#section1"){
			$(this).html("Ansprechpartner");
		}
	});
});
