Calling jquery function from asp.net OnClientClick

Calling jquery function from asp.net OnClientClick

what do I put inside the asp button's OnClientClick to call my jquery function?
Also,I still want my button handler in asp.net to function
  1. $('#btnNewBlock').click(function () {
  2.             $('#pnlBuildBlockInsert').show()
  3.  });


  4. <asp:Button ID="btnNewBlock" runat="server" Text="New Block" Visible="true" OnClientClick="????"  />