Getting witn Visual Studio 2012

Getting witn Visual Studio 2012

I have this code for my project in VS 2012 and doesn't work. Any idea about that?. Thanks in advance.
Regards
  1.  <script src="~/Scripts/jQuery.min.js" type="text/javascript"></script>
  2.     <script type="text/javascript">
  3.          $(document).ready(function () {
  4.              $('.slideshow').cycle({
  5.                  fx: 'suffle',
  6.                  continous: 1 // Aquí cambia el tipo de transición de imagen a utilizar,                                                
  7.              });
  8.          });
  9.     </script>

  10.     <div class="slideshow"> 
  11. <img src="Images/foto1.JPG" width="200" height="200" class="first"  /> 
  12. <img src="Images/foto2.JPG" width="200" height="200" /> 
  13. <img src="Images/foto3.JPG" width="200" height="200" /> 
  14. <img src="Images/foto4.JPG" width="200" height="200" /> 
  15. <img src="Images/foto5.JPG" width="200" height="200" /> 

  16. </div>