$(document).ready(function(){ function workouttwoTabs() { $(".workouttwo-item-wrap").not(":first").hide(); $(".workouttwo-tab").click(function() { $(".workouttwo-tab").removeClass("workouttwo-tab-active").eq($(this).index()).addClass("workouttwo-tab-active"); $(".workouttwo-item-wrap").hide().eq($(this).index()).show(); }).eq(0).addClass("workouttwo-tab-active"); } workouttwoTabs(); });