[jQuery] Callback after CSS setting not completing...

[jQuery] Callback after CSS setting not completing...


Any idea why this isn't being called??
<code>
$(document).bind('tab_change', function(event, t, tc, th1, th2, ch1,
ch2){
    $("#" + ch1 +", #" + ch2).hide();
    $("#" + tc).show();
    $("#" + t).css("border-bottom","2px solid #ffcc00");
    $("#" + th1 + ", #" + th2).css("border", "none", function(){
        $(document).trigger('getgoogle', t);
        });
});
</code>
I realize I may be doing things the hard way, please forgive me.