// JavaScript Document
jQuery(document).ready(function() {
	$('a.staff_info').click(function(){
		var info_id = 'div#moreinfo_' + this.name;
		 		 
		 if(!$(info_id).is(":visible")){
			$.ajax({
				type: "POST",
				url: "/includes/ajax_staffinfo.php",
				timeout: 5000,
				data: "id=" + this.name,
				success: function(result){
					$(info_id).html(result);
				},
				error: function(result){
					$(info_id).html("Fehler. Bitte erneut klicken.");
				}
			});
		 }
		 $(info_id).slideToggle("slow");
		return false;
	});
	
	$('a#show_agb').click(function(){
		var agb_id = 'div#agb';
		$(agb_id).slideToggle("slow");	   
		return false;
	});
});
