﻿ $(document).ready(function() {
	
	
	$(".ch_code_container").after("<a href=\"#\" class=\"show\">Pokaż</a>").hide();
	$("a.show").click(function() {
		$(this).prev(".ch_code_container").slideToggle("slow");
		return false;
	}).toggle(function() { $(this).text('Ukryj'); }, function() { $(this).text("Pokaż"); });
 });

       


