Using button to change value

Using button to change value

Hi folks,

i'm currently working on a 360° view using the reel.js plugin (reel360.org) - i'm trying to use a simple button to change the image folder or range.. the button does not do anything, what am i doing wrong? 

Code: 

  1. <html>
  2.   <head>
  3.     <script src='http://code.jquery.com/jquery-1.9.1.min.js' type='text/javascript'></script>
  4.     <script src='images/jquery.reel.js' type='text/javascript'></script>
  5. <script>
  6. $(function () { 
  7.   $(document).ready("#change").click(function () { 
  8. $("#image").attr("data-images", "images/neu###.jpg|000..036"); 
  9.     $.reel.scan();
  10. });
  11. });  
  12. </script>
  13. </head>
  14.   <body>
  15. <img src="images/bild000.jpg" width="640" height="480"
  16.       class="reel"
  17.       id="image"
  18.       data-images="images/bild###.jpg|000..036"
  19.       data-cw="true"
  20.       data-frame="32"
  21.       data-speed="-0.2"
  22.       data-duration="6"
  23.       data-velocity="3"
  24.       data-brake="0.2">
  25. <button id="change"> Farbe wechseln </button>
  26. </body>
  27.     </html>


Any help is greatly appreciated! 

Thanks in advance