$(document).ready(
	function()
	{
		var nextDiv;

		$("#teachersList div div").hide();

		/**
		 * Steruje pokazywaniem opisów wykładowców
		 */
		$("#teachersList div p").click(
		function()
		{
			nextDiv = $(this).next("div");
			$("#teachersList div div:visible").not(nextDiv).hide("fast");
			$(nextDiv).show("fast");
		});
	}
)

