 $(document).ready(function(){
//	$('tr').addClass('highlited');
//	$('td').bind("mouseenter", function(e){
//		 $(this).parents('tr').addClass('highlited');
//	});
//	$('td').bind("mouseleave", function(e){
//		 $(this).parents('tr').removeClass('highlited');
//	});

	$('.nahledVSeznamu').bind("mouseenter", function(e){
		$('.popisNahleduVSeznamu', this).show();
	}).bind("mouseleave", function(e){
		$('.popisNahleduVSeznamu', this).hide();
	});
	$('.clovek').bind("click", function(e){
		if ($('.zivotopis', this).css('display') == 'none') {
			$('.zivotopis', this).show('slow');
		}
	});
	$('.clovek').bind("mouseleave", function(e){
		$('.zivotopis', this).hide('slow');
	});
//	$('div.dialog').animate( { 'background-color': "#F00" }, 1000 )

 });

