$(document).ready(function() {
 
	//Default Action
	$(".simpletoptab_content").hide(); //Hide all content
	$("ul.simpletoptabs li:first").addClass("active").show(); //Activate first tab
	$(".simpletoptab_content:first").show(); //Show first tab content
	
	$(".simplebottomtab_content").hide(); //Hide all content
	$("ul.simplebottomtabs li:first").addClass("active").show(); //Activate first tab
	$(".simplebottomtab_content:first").show(); //Show first tab content
	
	//On Click Event
	$("ul.simpletoptabs li").click(function() {
		$("ul.simpletoptabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".simpletoptab_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).fadeIn(); //Fade in the active content
		return false;
	});
	
 	$("ul.simplebottomtabs li").click(function() {
		$("ul.simplebottomtabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".simplebottomtab_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).fadeIn(); //Fade in the active content
		return false;
	});
 
});

