Helping hand please

Helping hand please

Im trying to use the colorPicker plugin  to make a little page.

My code is giving the error ' Uncaught SyntaxError: Unexpected end of input'
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="jquery.js"></script>
  4. <link rel="stylesheet" media="screen" type="text/css" href="css/colorpicker.css" />
  5. <script type="text/javascript" src="js/colorpicker.js"></script>
  6. <script type="text/javascript">
  7. $(document).ready(function() {
  8.   $('#colorpickerHolder').ColorPicker({
  9.   flat: true,
  10.   onChange: function (hsb, hex, rgb) {
  11.     $('#add').click(function(hex){
  12.       $('#pallette').css('backgroundColor', '#' + hex);
  13.     });
  14.   }
  15. });
  16. </script>
  17. <style>

  18. </style>
  19. </head>
  20. <body>
  21. <div id="pallette" style="width:200px;height:600px;">
  22. </div>
  23. <div id="colorpickerHolder" style="position: absolute; right: 10px; bottom: 10px;">
  24.   <div style="position:relative">
  25.     <button id="add">Add Colour</button>
  26.     <button id="remove">Remove Colour</button>
  27.   </div>
  28. </div>
  29. </body>
  30. </html>
can anyone help please?