$(document).ready(function() {

	//Authors Tab Function
	$('.tab_content').hide();
	$('.tab_content:first, ul.tabs li:first').show().addClass('active');
	$('ul.tabs li').click(function(){
		$('ul.tabs li').removeClass('active');								 
		$(this).addClass('active');
		$('.tab_content').hide();
		$(this).parent().parent().find($(this).find('a').attr('href')).show();
		return false;
	});
});
