/* ready
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
$(document).ready(function(){
        $('ol li div.odpowiedz').hide();//fadeOut('slow');
        //$('ol li p.zalecamy').fadeOut('slow');
        $('ol li p.pytanie').mouseover(function(){$(this).css('cursor', 'pointer');});
        $('ol li p.pytanie').click(function(){
                var _next = $(this).next('div.odpowiedz');
                if(!_next.attr('name'))
                        _next.slideDown('normal', function(){
                                $(this).attr('name', 'show');
                        });
                else _next.slideUp('fast', function(){
                                $(this).removeAttr('name');
                        });

        });
});


