$(document).ready(function() { 
	$("#kategorie ul ul, #polecamy ul ul").css({display: "none"});
	$("#kategorie ul li, #polecamy ul li").hover(function(){ 
		$(this).find('ul:first').slideToggle('slow'); 
	},function(){ 
		$(this).find('ul:first').slideToggle('slow'); 
	}); 
});

$(document).ready(function(){
    $("#literowki form").hide();
	$(".show_hide2").show();
		
	$('.show_hide2').click(function(){
		$("#literowki form").slideToggle();
	});

});

$(document).ready(function(){
    $("#loginform").hide();
	$(".show_hide").show();
		
	$('.show_hide').click(function(){
		$("#loginform").slideToggle();
	});

});

$(document).ready(function(){
  $("#kategorie .cat-item, #polecamy .menu-item").hover(function(){
	$(this).addClass("green");
  },function(){
	$(this).removeClass("green");
  }); 
});

$(document).ready(function() {
	$("#kategorie .cat-item, #polecamy .menu-item").find(".children").each(function(){
		$(this).parent("li").addClass("got-children");
   });
 });

$(document).ready(function($){
	$(".gallery").each(function(index, obj){
		var galleryid = Math.floor(Math.random()*10000);
		$(obj).find("a").colorbox({rel:galleryid, maxWidth:"95%", maxHeight:"95%"});
	});
	$("a.lightbox").colorbox({maxWidth:"95%", maxHeight:"95%"});
	$("a[rel='colorbox']").colorbox();
});

