// JavaScript Document


$(document).ready(function() {
	
		//When page loads...
		$(".numatab_content").hide(); //Hide all content
		$("ul.numatabs li:first").addClass("active").show(); //Activate first tab
		$(".numatab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.numatabs li").click(function() {
	
			$("ul.numatabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".numatab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});


$(document).ready(function() {
	
		//When page loads...
		$(".ballistictab_content").hide(); //Hide all content
		$("ul.ballistictabs li:first").addClass("active").show(); //Activate first tab
		$(".ballistictab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.ballistictabs li").click(function() {
	
			$("ul.ballistictabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".ballistictab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});


$(document).ready(function() {
	
		//When page loads...
		$(".pttab_content").hide(); //Hide all content
		$("ul.pttabs li:first").addClass("active").show(); //Activate first tab
		$(".pttab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.pttabs li").click(function() {
	
			$("ul.pttabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".pttab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});



$(document).ready(function() {
	
		//When page loads...
		$(".walkstooltab_content").hide(); //Hide all content
		$("ul.walkstooltabs li:first").addClass("active").show(); //Activate first tab
		$(".walkstooltab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.walkstooltabs li").click(function() {
	
			$("ul.walkstooltabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".walkstooltab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});


$(document).ready(function() {
	
		//When page loads...
		$(".gtgtab_content").hide(); //Hide all content
		$("ul.gtgtabs li:first").addClass("active").show(); //Activate first tab
		$(".gtgtab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.gtgtabs li").click(function() {
	
			$("ul.gtgtabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".gtgtab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});


$(document).ready(function() {
	
		//When page loads...
		$(".magnatab_content").hide(); //Hide all content
		$("ul.magnatabs li:first").addClass("active").show(); //Activate first tab
		$(".magnatab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.magnatabs li").click(function() {
	
			$("ul.magnatabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".magnatab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});


$(document).ready(function() {
	
		//When page loads...
		$(".feelmaxtab_content").hide(); //Hide all content
		$("ul.feelmaxtabs li:first").addClass("active").show(); //Activate first tab
		$(".feelmaxtab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.feelmaxtabs li").click(function() {
	
			$("ul.feelmaxtabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".feelmaxtab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});

$(document).ready(function() {
	
		//When page loads...
		$(".tastab_content").hide(); //Hide all content
		$("ul.tastabs li:first").addClass("active").show(); //Activate first tab
		$(".tastab_content:first").show(); //Show first tab content
	
		//On Click Event
		$("ul.tastabs li").click(function() {
	
			$("ul.tastabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".tastab_content").hide(); //Hide all tab content
	
			var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
			$(activeTab).fadeIn("slow"); //Fade in the active ID content
			return false;
		});
	
});


