jQuery(document).ready(function(){


	jQuery(".tabs_rozgrywki").click(function() {

		var wybrany = jQuery(this).attr("id");
		var pokaz = wybrany.substring(5);

			jQuery(".rozgrywki_wyniki").fadeOut(300);
			jQuery(".rozgrywki_tabela").fadeOut(300);


		setTimeout(function() {
			jQuery("."+pokaz).fadeIn(400);
		},200);


		//alert(pokaz);

	});



	jQuery(".pub_tabs").click(function() {

		var wybrany = jQuery(this).attr("id");
		//alert(wybrany);

		jQuery(".content_tab").each(function() {
			jQuery(this).fadeOut(200);
		});

		setTimeout(function() {
			jQuery("#content_"+wybrany).fadeIn(200);
		},300);


	});


});

