function showTab(tab)
{
	$('.tab').each(function() {
		if('tab_' + tab == $(this).attr('id'))
		{
			$(this).css('display', 'block');
			$('#' + $(this).attr('id') + '_label').addClass('active');
		}
		else
		{
			$(this).css('display', 'none');
			$('#' + $(this).attr('id') + '_label').removeClass('active');
		}
	});
}

