$(document).ready(function(){
							   
	$("a.tab").click(function(e){
							  
		// Stop anchor
		e.preventDefault();
		
		// Remove the active State
		$(".activeTab").removeClass("activeTab");
		
		// Add the actice state to this tab
		$(this).addClass("activeTab");
		
		// Hide all Content
		$(".tab_content").hide();
		
		// Find content ID from link title
		var content_show = $(this).attr("title");
		
		// Show content
		$("#"+content_show).show();
		
	});					   

});
