Hi friend ,
When the Ajax toolkit is used in a page Jquery method's won't be fired after a partial postback..
So you can use this method to wire ur jquery events to the Ajax Update panel
<script type="text/javascript">
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function() {
//Jquery logic
});
</script>
This code should be placed inside the contentTemplate tag
Happy Coding....
