$(document).ready(function() {
    // Add resource center tab
    // alert($("#resourceCenterTabContainer li").length);
    if ($("#resource_center").length > 0) {
        $("<li><a href='#resource_center'><span>Resource Center</span></a></li>").appendTo("#nonOvenProductPageTabs ul:first");
        $("#resource_center").appendTo("#nonOvenProductPageTabs");
    }

    $("#nonOvenProductPageTabs > ul").tabs({ fx: { opacity: "toggle", duration: "fast"} });

    // If a tab ID was passed in via the querystring, show that tab.
    var qsid = $.jqURL.get("tabid");
    if (qsid != null) {
        // Is this ID present on the page?
        if ($("#nonOvenProductPageTabs #" + qsid).length > 0) {
            $("#nonOvenProductPageTabs > ul").tabs("select", "#" + qsid);
        }
    }
});

       function selectTab(idx) {
    $("#nonOvenProductPageTabs > ul").tabs("select", idx);
}