jQuery(document).ready(function(){
	
	$("#acc .faq").not(":first").hide();
	
	$('#acc a').click(function() {
		
		var licznik = $("#acc h2 *").index(this);						  
										  
		$(".faq:visible").slideUp("slow");
			
		$(".faq").eq(licznik).slideDown("slow");

		return false;
	});
});
