$('.module_tabs-main a').not('.vimeo_chapter').click(function () { var _rel = $(this).parent().index(); var $parent = $(this).parents('.module'); if (!$parent.children('.module_content:eq(' + _rel + ')').is(':visible')) { // only do the following if the tab is currently hidden $parent.children('.module_content:visible').slideUp(400, function () { $parent.children('.module_content:eq(' + _rel + ')').slideDown(400); }); $parent.find('.selected').removeClass('selected'); $parent.find('.module_tabs-main li:eq(' + _rel + ')').addClass('selected'); } }); $(document).ready(function () { // Bryan fix to show texas default tab on load hash = window.location.hash; elements = $('a[href="' + hash + '"]'); if (elements.length === 0) { var selectedTab = $(".module_tabs li.selected"); selectedTab.addClass("active").show(); $(selectedTab.find("a").attr("href")).show(); $("#california").css("display", "none"); } else {elements.click();} });