Jquery not working at all =/

Jquery not working at all =/

I looked through a few threads but couldn't figure out why my script isn't working =/ I decided to test out something simple with Jquery before trying to build my portfolio. This is my script:
HTML
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Portfolio</title>
  5. <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
  6.         <script type='text/javascript' src='script.js'></script>
  7.         
  8. </head>
  9. <body>
  10. <div class ="topbar"></div>
  11. </body>
  12. </html>
CSS

  1. .topbar {
  2.     height: 100px;
  3.     width: 100%;
  4.     border-radius: 5px;
  5.     background-color: #008800;
  6. }
Jscript
  1. $(document).ready(function() {
  2.     $('div').click(function() {
  3.         $(this).fadeOut('slow');
  4.     });
  5. });
I'm really unsure why this isn't working. I've tried a few other browsers (Mozilla, Opera etc...) and still not working.