$(document).ready(function(){
	
	var height_menu_glowne = $("#menu_rozwijane").height();
	
	$("#menu_rozwijane ul.poziom1 > li").hover(
			function(e) {
					$("#menu_rozwijane ul.poziom1 > li").removeClass('rozsun');
					
					var height = $(this).find(".blok-menu2").height();
					$("#menu_rozwijane").css("height", height + height_menu_glowne);
			},
			function(e) {
					if( $("#menu_rozwijane ul.poziom1 > li").hasClass('wcisniety') )
					{
						$("#menu_rozwijane ul.poziom1 > li.wcisniety").addClass('rozsun');
						var height = $("#menu_rozwijane ul.poziom1 > li.wcisniety").find(".blok-menu2").height();
						$("#menu_rozwijane").css("height", height + height_menu_glowne)
					}
					else
					{
						$(this).addClass('rozsun');
					}
					
			}
		);
});
