/*********** Publications toggle *********/

$(function() {
	$('.publication_list,.hide').hide();
	$('.toggle').toggle(function() {
		$(this).siblings('.publication_list').slideDown();
		$(this).find('.show').hide();
		$(this).find('.hide').show();
	}, function() {
		$(this).siblings('.publication_list').slideUp();
		$(this).find('.hide').hide();
		$(this).find('.show').show();
	});
});