jQuery(document).ready(function(){
	var location = document.location.toString();
	var menus = jQuery('#cennik-oferta');
        menus.find("ul").hide();
	menus.children().find('a').each(function(){
if(location.indexOf(jQuery(this).attr('href')) >= 0) 
		{
			menus.find("ul").show();	
		}
	})
});

jQuery(document).ready(function(){
	var location2 = document.location.toString();
	var gal= jQuery('#gal');
        gal.find("ul").hide();
	gal.children().find('a').each(function(){
if(location2.indexOf(jQuery(this).attr('href')) >= 0) 
		{
			gal.find("ul").show();	
		}
	})
});


jQuery(document).ready(function(){
	var location3 = document.location.toString();
	var buk = jQuery('li.buk');
        buk.find("ul").hide();
	buk.each(function(){	
		jQuery(this).children().find('a').each(function(){	
	if(location3.indexOf(jQuery(this).attr('href')) >= 0) 
			{
			buk.find("ul").show();	
			}
		});
	});
});

