$(document).ready(
	function()
	{
		$(".rozw").mouseover(function(){
			$(this).find('ul').show();
		}).mouseout(function(){
			$(this).find('ul').hide();
		})
		
		$(".rozw2").click(function(){
			
				$('.pod').slideUp();
			if ($(this).find('ul').css('display')=='none')
			{
			$(this).find('ul').slideDown();
			}
		})
	}
	);