What in the world is wrong with this?

What in the world is wrong with this?

I made this today and it just doesn't want to work. I really have no idea why. Any help would be appreciated.

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <title>jQuery Popout Nav</title>
  5.         <script type="text/javascript" src="jquery-1.4.2.min.js"></script>
  6.         <script type="text/javascript">
  7.             $(function(){
  8.                 $('a').clicked(function() {
  9.                     $('#nav').toggle();
  10.                 });
  11.             });
  12.         </script>
  13.         <style>
  14.             #nav{
  15.                 background:red;
  16.                 height:300px;
  17.                 width:300px;
  18.             }
  19.         </style>
  20.     </head>
  21.     <body>
  22.         <div id="nav"></div>
  23.         <a href="#">Click me!</a>
  24.     </body>
  25. </html>
Thanks,
Keenan