	$(document).ready(function() {
		$('#publications').show();
		$('#foldPublications').click (
			function() { $('#publications').slideToggle();	}
		).toggle (
			function () { 
				$('.fold-txt').html("expand");
				$('#foldPublications img').attr({ src: "/fileadmin/media/layout/icons/icon_bottom.gif", title: "expand", alt: "expand"}); 
			},
			function () { 
				$('.fold-txt').html("fold");
				$('#foldPublications img').attr({ src: "/fileadmin/media/layout/icons/icon_top.gif", title: "fold", alt: "fold"}); 
			}			
		);
	});
	
