Multiple JQUERY scripts on the same page

Multiple JQUERY scripts on the same page

Hi there,

I know this has been asked many time, but none of the answers have worked, I need two scripts to work on the same page, heres what I have got so far:

<script src="js/jquery-1.7.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.modern-ticker.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.slider.min.js"></script>

and..

<script type="text/javascript">
            
          $(".modern-ticker").modernTicker({
                effect: "fade",
    displayTime: 6000,
    transitionTime: 300,
                autoplay: true,
                feedType: "twitter",
                twitterName: "franklin_arrow",
                feedCount: 8
            });
            
</script>

  <script type="text/javascript">
    jQuery(document).ready(function($) {
      $(".slider").slideshow({
        width      : 960,
        height     : 325,
        transition : ['barLeft', 'barRight']
      });
    });
  </script>

Many thanks for the help!