Conflict jquery.min.js with joomla mootools

Conflict jquery.min.js with joomla mootools

Hi Dear


I use joomla with ja3T3 plugin
after add this code
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js
  2. "></script>
my megamenu not working
I solved this problem with


  1.  <script type="text/javascript">
  2. $.noConflict();
  3. // Code that uses other library's $ can follow here.
  4. </script>
after that i used this code for mouse click effect div

  1. <script>
  2.     var tuvan_opened = false;
  3.     function toggle_tuvan() {
  4.         if(!tuvan_opened) {
  5.         $('#tuvan').animate( { bottom: "35px" }, 1000 );
  6.         $('#tuvan .tri').css({"background-Color":"black"});
  7.         } else {
  8.     $('#tuvan').animate( { bottom: "-95px" }, 1000 );
  9.     $('#tuvan .tri').css({"background-Color":"#F00"});
  10.    
  11.         }
  12.         tuvan_opened = !tuvan_opened;
  13.     }
  14. </script>
it work when i didn't use
  1.  <script type="text/javascript">
  2. $.noConflict();
  3. // Code that uses other library's $ can follow here.
  4. </script>
but when i used that my code not working & megamenu was work??

what I must be do to all of them work??

I read this
http://api.jquery.com/jQuery.noConflict/

but I can't solve that.

Please help what I must be do?

thanks