Jquery conflict - Pls Help!

Jquery conflict - Pls Help!

Hi Everyone,

This should be an easy one to fix but obviously has me baffled! I am not a JS programmer by any means so really could use your help.

I have JQ installed on our site and it is working perfectly. We have a couple of pluggins such as the tooltip pluggin and the thickbox. Both are working perfectly.

The problem is that when we go to include the in the site, the other functions stop working.

I suspect the problem is with the <script> function </script> - does one need to be renamed or something?

anyway, here are the conflicting codes:

for the tooltip:
<? // tooltip for the def ?>
<script type="text/javascript">
      $(function(){
         $("a.tooltiplink").simpletooltip();
         $("a.clic").simpletooltip({click: true});
         $("a.delay").simpletooltip({hideDelay: 0.5});
      })
</script>

for the jquery curveycorners here is what is being used:

<script type="text/JavaScript">

  $(function(){
 
  settings = {
          tl: { radius: 20 },
          tr: { radius: 20 },
          bl: { radius: 20 },
          br: { radius: 20 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }

  $('.myBox, .realBox').corner(settings);
 
  });

</script>


for tabber here is the code:

<script type="text/javascript">
   $(document).ready(function(){
      
      $.jtabber({
         mainLinkTag: "#ss_nav a", // much like a css selector, you must have a 'title' attribute that links to the div id name
         activeLinkClass: "selected", // class that is applied to the tab once it's clicked
         hiddenContentClass: "hiddencontent", // the class of the content you are hiding until the tab is clicked
         showDefaultTab: 1, // 1 will open the first tab, 2 will open the second etc.  null will open nothing by default
         showErrors: true, // true/false - if you want errors to be alerted to you
         effect: 'slide', // null, 'slide' or 'fade' - do you want your content to fade in or slide in?
         effectSpeed: 'medium' // 'slow', 'medium' or 'fast' - the speed of the effect
      })
      
   })
   
   
</script>



is there any way to make them "get along"?!

Thanks