
(function($){

$(document).ready(function(){
	// set folding behavior.
	$('#interviewer > ul > li > span')
		.css('cursor', 'pointer')
		.click(function(){
			$(this).next().toggle();
		})
		.next(':not(:first)').hide();
});

})(jQuery);
