Я нашел похожую проблему.
Но я не знаю, как ее изменить
http://jsfiddle.net/EPEDr/3/
$("#simple-tabs .tab_content").hide(); //Hide all content
$("#simple-tabs ul.tabs li:first").addClass("active").show(); //Activate first tab
$("#simple-tabs .tab_content:first").show(); //Show first tab content
//On Click Event
$("#simple-tabs ul.tabs li").click(function(e) {
$("#simple-tabs ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$("#simple-tabs .tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
$('.video-container iframe[src*="http://www.youtube.com/embed/"]').each(function(i) {
this.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
});
e.preventDefault();
});
(function($) {
$('.tab ul.tabs li:first-child a').addClass('current');
$('.tab .tab_content div.tabs_tab:first-child').show();
$('.tab ul.tabs li a').click(function(g) {
var tab = $(this).parent().parent().parent(),
index = $(this).parent().index();
tab.find('ul.tabs').find('a').removeClass('current');
$(this).addClass('current');
tab.find('.tab_content').find('div.tabs_tab').not('div.tabs_tab:eq(' + index + ')').slideUp();
tab.find('.tab_content').find('div.tabs_tab:eq(' + index + ')').slideDown();
g.preventDefault();
});
})(jQuery);