overlap of drop down menu and accordion block (display problem)

overlap of drop down menu and accordion block (display problem)

(note : i renamed this topic, original post was sent yesterday under "override of drop down menu and accordion (display problem)" and published in Using Jquery UI)

Hi all

I set a drop down menu using jquery naviDropDown 1.0 and  use accordion of jquery-ui-1.8.11 too. I have a problem because the drop down menu is diplayed behing the accordion block.

Does anyone know what the problem could be ? I attach a screenshot of what happens and head and mennu and accordion code.

Head statements :
Copy code
  1. script type="text/javascript" src="js/jquery-1.5.1.min.js"><link type="text/css" href="jquery/css/custom-theme/jquery-ui-1.8.11.custom.css" rel="stylesheet" /></script>
  2. <script type="text/javascript" src="js/jquery.easing.1.3.js">
  3. <script type="text/javascript" src="js/jquery.hoverIntent.minified.js">
  4. <script type="text/javascript" src="js/jquery.naviDropDown.1.0.js">
  5. <script type="text/javascript" src="jquery/js/jquery-ui-1.8.11.custom.min.js">


Menu call :

Copy code
  1. script type="text/javascript">  $(function(){ $('#navigation_horiz').naviDropDown({ dropDownWidth: '115px' }); }); </script>

  2. <div id="menu">

  3. <div id="navigation_horiz">

  4.   <ul>

  5.     <li>

  6.     <a href="" class="navlink">DOCUMENTS</a>

  7.     <div class="dropdown" id="dropdown_two">

  8.       <p class="maj">

  9.       <a href="#URL">title</a><br /><br />

  10.      </p>

  11.     </div><!-- .dropdown_menu -->

  12.     </li>

  13.  </ul>

  14. </div><!-- #navigation_horiz -->


Accordion call :
Copy code
  1. script> $(function() { $( "#accordion" ).accordion({ autoHeight: false, collapsible: true}); });</script>
  2. <div id="accordion">

  3. <h3><a href="#">First header</a></h3>

  4. <div> Morbi a arcu augue. </div>

  5. <h3><a href="#">Second header</a></h3>

  6. <div> Nullam in ligula rhoncus lorem hendrerit</div>

  7. </div>


Of course I can send further details if necessary.

Thanks
lg