Multiple JQuery Isues

Multiple JQuery Isues

Hi guys. Im not as good in coding but got several custom JQuery features running. I am building up a new website and have the following problem. 

I use the Serie3 Slider for header pics, a CSS nav which runs on Jquery and at last I added a fancy box gallery. I had to delete a part of the script already from the nav to make both nav and s3slider work together but now with the gallery I get either the gallery only or the slider work.

The problem is this line:

  1. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  2. <script type="text/javascript" src="http://www.paradisepuertorico.com/js/s3Slider.js"></script>
  3. <script type="text/javascript">
  4.     $(document).ready(function() {
  5.         $('#slider').s3Slider({
  6.             timeOut: 9000
  7.         });
  8.     });
  9. </script>

  10. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
  11. <link rel="stylesheet" href="http://www.paradisepuertorico.com/gal/source/jquery.fancybox.css" type="text/css" media="screen" />
  12. <script type="text/javascript" src="http://www.paradisepuertorico.com/gal/source/jquery.fancybox.pack.js"></script>

  13. <script type="text/javascript">
  14. $(document).ready(function() {
  15. $(".fancybox").fancybox();
  16. });
  17. </script>
The problem seems to be this line:

  1. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>

When i take it out the slider works again but the gallery of course doesn't anymore. What could I do to get both running? Its probably something really obvious, but Im learning here. 



Thank you very much for your help.