$(document).ready(function(){
	$(".b-speaker .name").click(
		function() {
			$(this).parents().siblings(".info").toggle();
			$(this).parents().siblings(".doklads").children(".description").toggle();
			return false;
		}
	)
	
	$(".b-speaker .b-block_left img").click(
		function() {
			$(this).closest(".b-speaker").find(".info").toggle();
			$(this).closest(".b-speaker").find(".doklads > .description").toggle();
			return false;
		}
	)
});
