$(document).ready(function(){
    // $('#tabs div').hide();
    // $('#tabs div:first').show();
    // $('#tabs ul#tit_tab li:first').addClass('active');
    $('#tabs ul#tit_tab li a').click(function(){
        $('#tabs ul#tit_tab li').removeClass('active');
        $(this).parent().addClass('active'); 
        var currentTab = $(this).attr('href'); 
        $('#tabs div').hide();
        $(currentTab).show();
        return false;
    });
});
