$(document).ready(function() {
    $(".af_int_don_tab_content").hide();
    $("ul.af_int_don_tabs li:first").addClass("active").show();
    $(".af_int_don_tab_content:first").show();
    
    $("ul.af_int_don_tabs li").click(function() {
        $("ul.af_int_don_tabs li").removeClass("active");
        $(this).addClass("active"); 
        $(".af_int_don_tab_content").hide();
        var activeTab = $(this).find("a").attr("href");
        $(activeTab).fadeIn();
        return false;
    });
});  