Can you affect click event precedence?

Can you affect click event precedence?

I have the following situation


  1. $("li#FirstDrilldown").click(function() {
  2.     $(this).find("div#SecondDrilldown").show();
  3. });
  4. $("div#SecondDrilldown").click(function() {
  5.     // Do something
  6. });

  7. <ul>
  8.     <li id="FirstDrilldown">
  9.         <div id="SecondDrilldown" style="display:none">
  10.         </div>
  11.     </li>
  12. </ul>
I'd like to click FirstDrilldown and have it display div#SecondDrilldown.  Then I'd like to be able to click SecondDrilldown to fire off a different click handler.  The problem is that the click handler bound to the FirstDrilldown intercepts the click.  I'm fairly sure I could bind and unbind the click FirstDrilldown click event but that's kind of an inelegant solution.

Is there just a way to just promote the SecondDrilldown click event to have a greater precedence than the one associated with FirstDrilldown?

Thanks,

BK