/* menujs */
$(document).ready(function() {
	
	$('#menujs > li > ul ').hide();
	u=window.location.href;
	u1=window.location.href;
	p1=u1.lastIndexOf("\/");
	u1=u1.substring(p1,100);
	if(u1 != "\/")
	{
		p=u.lastIndexOf("\/");
		k=u.indexOf(".pl\/") + 3;

	
	if(p == k)
		{
		u=u.substring(1,100);
		u=u.slice(p,60);

		}
	else
		{
		u=u.substring(p,k);
		p=u.lastIndexOf("\/");
		
		if(p != 0)
		u=u.substring(1,p);
		else
		u=u.substring(1,k);
		
		}
		
		$('#'+u).addClass("otwarta");
		$('.'+u).show();
	}
	
	
	
	});