jQuery(document).ready(function() {
    jQuery(".prepinac").next(".prepinacSkryty").hide();
    jQuery(".prepinac").click(function() {
	       //$('.active').not(this).toggleClass('active').next('.prepinacSkryty').hide("fast");
        $(this).toggleClass('active').next().slideToggle("fast");
		return false; //Prevent the browser jump to the link anchor
    });
});
