[jQuery] load function then slide

[jQuery] load function then slide


This has worked in the past, but now I am trying with the new version
of jquery and the easing plugin.
I want my html to load into a div, then slideDown with easing.
Everything loads fine for me...but no slide effect. Any help would be
fantastic.
<script type="text/javascript">
$(document).ready(function() {
$("#tools a").click(function(){
$("#toolsLoader").load(this.href,function(){
            $(this).slideDown({duration: 1000, easing: easeout});
});
return false;
});
});
</script>