$(document).ready(function(){
	$(".speakers .name").click(
		function() {
			$(this).parents().siblings(".info").toggle();
			$(this).parents().siblings(".doklads").children(".description").toggle();
			return false;
		}
	)
	
	$(".speakers .photo img").click(
		function() {
			$(this).closest("li").find(".info").toggle();
			$(this).closest("li").find(".doklads > .description").toggle();
			return false;
		}
	)
});

