// jaxmagMAG Tabs

$(document).ready(function() {
$(".jaxmagtab_content").hide(); //Hide all content
$("ul.jaxmagtabs li:first").addClass("active").show(); //Activate first tab
$(".jaxmagtab_content:first").show(); //Show first tab content
$("ul.jaxmagtabs li").click(function() {
$("ul.jaxmagtabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".jaxmagtab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).show();
return false;
});
});










