
$(document).ready(function() {
						 
	
	$(".tab_content").hide(); 

	$("#tabs ul.tabs a:first").addClass("active").show(); 
	
	$(".tab_content:first").css("display","block"); 

	
	$("#tabs ul.tabs a").click(function() {
	
		$("#tabs ul.tabs a").removeClass("active"); 
		
		$(this).addClass("active"); 
		
		$(".tab_content").hide();
		
		//var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content
		var activeTab = '#'+$(this).attr("title");
	
		
		$(activeTab).css('display','block'); 
		

		return false;
	});

});
