$(document).ready(function(){
	
    $(".ulRight li").click(function(){
		
		if ($(this).next().is(":visible")){
			$(this).parent().prev().css("font-weight","normal");	
			$(this).next().slideUp("fast");	
		}
		if ($(this).next().is(":hidden")){
			$(this).parent().prev().css("font-weight","bold");	
			$(this).next().slideDown("fast");	
		}
		
		return false;
	});
	
	
	
	
	
	/* jquery  - all information in "documentation" section - tip search "click" event */
	

	
	    $("a.tdn").click(function(){
		
		if ($(".dspNon").is(":visible")){	
			$(".dspNon").slideUp("fast");	
			$(this).html("rozwiń");
		}
		if ($(".dspNon").is(":hidden")){
			$(".dspNon").slideDown("fast");	
			$(this).html("zwiń");
		}
		
		return false;
	});

});






