Problem with dynamic site works in IE8 and does not work in 9

Problem with dynamic site works in IE8 and does not work in 9

Hello friends. I have problems with dynamic site works in IE8 and does not work in 9.
Works well the "Tab One" (-menu upper-) by default (shows section "column" and "content" internal), but when I go out and I click on another tab and then return to "Tab One" only shows "content".
I need to show on the first tab "column" and "content", as it is by default.

See example with default:  http://jquerytest.zxq.net/

Files: http://www.mediafire.com/download.php?zotek8b4vwr4b40

jquery:

  1. load : function(url) {
  2.         url = url === '/' ? url : url;
  3.         jQuery.getJSON(url, { ajax : 1 }, function(data) {
  4.             jQuery.each(data, function(k, v) {
  5.                 $('#' + k + ' section').fadeOut(0, function() {
  6.                     $(this).replaceWith($(v).hide().fadeIn(0));
  7.                 });
  8.             });
  9.         });
  10.     }