$().ready(function() {
	$('.judges .opened a.open').click(function() {
		$(this).closest('li').find('.opened').fadeOut(function() {
			$(this).closest('li').find('.closed').fadeIn();			
		});
	});
	$('.judges .closed a.close').click(function() {
		$(this).closest('li').find('.closed').fadeOut(function() {
			$(this).closest('li').find('.opened').fadeIn();			
		});
	});
});
