

$(function(){
	//When page loads...
	$(".tab_content").hide();
	$("div.tab_items a:first").addClass("active");
	$(".tab_content:first").show();
	
	//On Click Event
	$("div.tab_items a").click(function() {
		$("div.tab_items a").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide();
		
		var activeTab = $(this).attr("href");
		$(activeTab).fadeIn();
		return false;
	});
});

