It seems you have all the javascript you need, but your pageRequest is asynchronous, so the javascript thread continues and starts the animation.
Perhaps a bit of a hack, but try this:
1. Use CSS to hide the problem button (#ctl00_btnOpenList {display: none}).
2. Create a new button that calls your linkPostback() function.
Alternatively, can't you disable the Animation Extender once the animation has finished with:
function linkPostback() {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(playAnimation)
}
function playAnimation() {
AnimationExtender.Enabled = true;
var onclkBehavior = $find("ctl00_btnOpenList").get_OnClickBehavior().get_animation();
onclkBehavior.play();
AnimationExtender.Enabled = false;
}