jQuerry not responding

jQuerry not responding

Hi! I just started practicing today jQuerry, followed all the instructions, CSS is working, but jQuerry is not responding, what do I have to do? I did put jQuerry in the same file...

<html lang="en">
<head>
    <title>jQuerry tutorial 01</title>
    <script src="jquerry-1.2.6.pack.js" type="text/javascript"></script>
   
    <style type="text/css">
    #box { background: red;
        width: 300px;
        height: 300px; }
    </style>
   
    <script type="text/javascript">
        $(function() {
            $('a').click(function() {
                $('#box').fadeout();
            });
        });
   
   
    </script>
   
</head>
<body>
    <div id="box"></div>
    <a href="#">Click Me!</a>
</body>
</html>