function selectTab (sVisible)
{
	$('.tabs .current').removeClass('current');
	$('.tabs .' + sVisible).addClass('current');
	return false;
}
