Jquery is not working

Jquery is not working

Hey all,
Ive been trying to make a test page ... I just want to make .slidedown ... here is my code (Yes i added the library to my visual studios project)

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title>Test</title>

  5.     <script src="jquery-1.4.2.min.js" type="text/javascript">
  6.         $(a).click(function () {
  7.             $(outter_container).slideDown("slow", function () { });
  8.         });
  9.     
  10.     </script>
  11. </head>
  12. <body>
  13. <a href="#">click</a>
  14. <div id="outter_container" style="padding: 200px 300px 200px 300px; margin: 100px; border-style: inset; visibility: hidden;" 
  15.         align="center">container1
  16. <div id="logo" 
  17.         style="padding: 31px; border-style: groove; margin: -194px -242px 0px -242px;">container2


  18. </div>


  19. </div>

  20. </body>
  21. </html>