So I know it is possible to do this fade-in/fade-out effect with jQuery UI Tabs. And this is the code I have to do it:
$("#Tabs").tabs({ fx: [{ opacity:'hide', duration:1000 },
{ opacity:'show', duration:1000 }] });
This will fade out current tab completely and only then start fading in the new one, so you end up with this blank space for a split second.
What I actually need is more of a cross-fade effect, meaning that when I click on another tab, the fading in of a new tab would start at the same time as fading out of the current one.