iki tane js uygulaması kullanmam gerek bunlardan biri sayfayı post etmek için "prototype.js" diğeri colorbox bu sayfaları birleştirdim ama ikisi aynı anda çalışmıyor.

<script src="js/jquery.min.js"></script>
        
        <script src="js/jquery.colorbox.js"></script>
          
            <script>
            $(document).ready(function(){
                //Examples of how to assign the ColorBox event to elements
                
                $(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});
            
            });
                     
                 </script>          
        <script  src="js/prototype.js"></script>
           <script> function sendRequest() {
                new Ajax.Request("bmi.php", 
                    { 
                    method: 'post', 
                    postBody: 'a='+ $F('form')+'&b='+$F('form1')+'&c='+$F('form2'),
                    onComplete: showResponse 
                    });
                }
 
            function showResponse(req){
                $('show').innerHTML= req.responseText;
            }
         </script>
Kodlar bu şekilde sorun ne olabilir ?