Styling with JQuery

Styling with JQuery

I want to add styling using jquery. What Iwant to happen is when the "cliterace" is clicked the "cliterace" becomes bold and enlarged the code I have so far is 

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Untitled Document</title>

  6. <style>


  7. .organ {
  8. font-size: 46px;
  9. font-weight: bold;
  10. }
  11. </style>

  12. </head>

  13. <body>
  14. <a href="#">Cliterace</a>
  15. <script src="js/jquery.js"></script>
  16.     <script>
  17. $("a").click(function( event ){
  18. $("a").addClass("organ");
  19. });
  20.   </script>

  21.     
  22. </body>
  23. </html>