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

