$(document).ready(function() {

  $(".odkaz1").click(function () {
    $('.change_krok2').show();
  });
  
	$(".morelink").click(function () {
      $(this).nextAll(".hidden").slideToggle("slow");
      $(this).hide();
    });

    $(".krokclick").click(function () {


     var idtoto =  $(this).attr("id");
     $('.change_krok1').hide();
     $('.change_krok2').hide();
     $('.change_krok3').hide();
     $('.change_krok4a').hide();
     $('.change_krok4b').hide();
     $('.change_krok4').hide();
     $('.change_krok5').hide();

	$('.change_'+idtoto).show();
	window.location.hash="kroky";
    });


	$(".showhide").click(function () {
      $(this).next(".hidden").slideToggle("slow");
     });

     $("h3.hideparagraf").hidethem();



});

jQuery.fn.hidethem = function() {
	return this.each(function() {
		$(this).addClass("click").nextAll("p,table,ul,").hide();
		$(this).bind('click', function()
		{
  			$(this).nextUntil("h3,div").slideToggle();
		});


	});

    /*return this.each(function() {
        this.style.color = 'red';
    });*/
};
