If you set the opacity using jQuery starting at (like 0):
$(object).css("opacity", 0);
then after you fade out, you can simply:
$(object).fadeIn("slow", function(){ $(object).css("opacity", ""); });
as the answer above did not work for me in IE <= 8
source share