1. <?php wp_enqueue_script("jquery"); ?>
  2.  
  3. <?php wp_head(); ?>
  4.  
  5. <script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js"></script>
  6. <script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/slides.jquery.js"></script>
  7. <script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/my-js-file.js"></script>
  8.  
  9.     <script>
  10.     $(document).ready(function() {
  11.             $('#slides').slides({
  12.                 preload: true,
  13.                 preloadImage: 'img/loading.gif',
  14.                 play: 5000,
  15.                 pause: 2500,
  16.                 hoverPause: true
  17.             });
  18.         });
  19.     </script>
  20.  
  21. </head>