    $(document).ready(function(){  
      
        //When mouse rolls over  
        $("li.strona").mouseover(function(){  
            $(this).stop().animate({height:'224px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        //When mouse is removed  
        $("li.strona").mouseout(function(){  
            $(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        
        
        
                //When mouse rolls over  
        $("li.komiks").mouseover(function(){  
            $(this).stop().animate({height:'250px'},{queue:false, duration:800, easing: 'easeOutBounce'})  
        });  
        //When mouse is removed  
        $("li.komiks").mouseout(function(){  
            $(this).stop().animate({height:'26px'},{queue:false, duration:800, easing: 'easeOutBounce'})  
        });  
        
        
        
        
        
                //When mouse rolls over  
        $("li.media").mouseover(function(){  
            $(this).stop().animate({height:'272px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        //When mouse is removed  
        $("li.media").mouseout(function(){  
            $(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        
        
        
        
                //When mouse rolls over  
        $("li.forum").mouseover(function(){  
            $(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        //When mouse is removed  
        $("li.forum").mouseout(function(){  
            $(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        
        
        
                //When mouse rolls over  
        $("li.publicystyka").mouseover(function(){  
            $(this).stop().animate({height:'233px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
        //When mouse is removed  
        $("li.publicystyka").mouseout(function(){  
            $(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
      
    });  

