function innitTabs()
{
	
	if ($("a#latest-tab").get(0))
	{
	
		$("a#latest-tab").click(function()
			{
				$("a#latest-tab").addClass('active');
				$("a#news-tab").removeClass('active');
				$("#news-listing").addClass('hidden');
				$("#latest-listing").removeClass('hidden');
				return false;
			});

		$("a#news-tab").click(function()
			{
				$("a#latest-tab").removeClass('active');
				$("a#news-tab").addClass('active');
				$("#news-listing").removeClass('hidden');
				$("#latest-listing").addClass('hidden');
				return false;
			});

	}
	
	
	$("a.expand").click(function(event)
	{
		var oparent = $(event.target).parent();
		oparent.find('.biography').slideDown();
		oparent.find('.expand').hide();
		oparent.find('.collapse').show();
		return false;
	});

	$("a.collapse").click(function(event)
	{
		var oparent = $(event.target).parent();
		oparent.find('.biography').slideUp();
		oparent.find('.collapse').hide();
		oparent.find('.expand').show();

		return false;
	});
}
