Confilcs in my JQuery

Confilcs in my JQuery

Hi guys,

Hope you are all well i am new here and would like a little help! i have a few scripts here that are conflicting! if i disable one of the scripts another one works and the same happens if i comment out the other script, basically both scrips wont work tougher! I know this has something to do with the Jquery version or does it?

  1. <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/javascript/styleswitch.js"></script>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>


  2. I HAVE A TICKER THAT WORKS IF I COMMENT OUT THE SCROLLER BELOW

     <!-- JavaScript quovolver -->
    <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/jquery.quovolver.js"></script>
       
        <!-- JavaScript Test Zone -->
    <script type="text/javascript">
        $(document).ready(function() {
           
            $('blockquote').quovolver();
           
        });
    </script>
       
    <!-- JavaScript quovolver end -->














  3. I HAVE A SCROLLER THAT WORKS IF I COMMENT OUT THE TICKER

       
    <!-- Scroller Start -->
    <script type="text/javascript" language="javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/jquery.js"></script>
    <script type="text/javascript" language="javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/jquery.carouFredSel-5.5.0-packed.js"></script>
    <script type="text/javascript" language="javascript">
                $(function() {
                    //    Scrolled by user interaction
                    $('#foo2').carouFredSel({
                        prev: '#prev2',
                        next: '#next2',
                        pagination: "#pager2",
                        auto: false
                    });

                });
    </script>
















So how do i go about getting these both to work together please!?