$(document).ready(function() {
	$(".tab-content").hide(); 
	$("ul.tabset li:first").addClass("active").show(); 
	$(".tab-content:first").show(); 
	//On Click Event
	$("ul.tabset li").click(function() {

		$("ul.tabset li").removeClass("active"); 
		$(this).addClass("active"); 
		$(".tab-content").hide(); 

		var activeTab = $(this).find("a").attr("href"); 
		$(activeTab).fadeIn(); 
		return false;
	});

});
