jQuery(document).ready(function(){
	jQuery('#wojewodztwa > li > ul').css('opacity','0.9');
	jQuery('#wojewodztwa > li > a.voivodeship').mouseover(function(){
	      if(jQuery(this).next('ul').attr('class') == 'hidden')
			{	
				jQuery('#wojewodztwa > li > ul.active').hide(10).attr('class','hidden');
				
				jQuery(this).next('ul').show(30).attr('class','active');
			}
	});
	jQuery('div:not(".navig")').hover(function(){
      	jQuery('ul.active').hide(200).attr('class','hidden');
    });
});

/********** MENU ROZWIJA W DÓŁ
jQuery(document).ready(function(){
		
	jQuery('#wojewodztwa > li > a[rel="nofollow"]').hover(
		function(){
			if(jQuery(this).next('ul').attr('class') == 'hidden')
			{	
				jQuery('#wojewodztwa > li > ul.active').hide(10).attr('class','hidden');
				
				jQuery(this).next('ul').show(300).attr('class','active');
			}
		}
	);
	
});*/
