A naive Bayes classifier, as the names suggests, is a simple application of Bayes' Theorem. Basically, it calculates the probabilities of quantities of interest (generally unobserved, called parameters or latent classes) based on the observed data. In your case the observed data are: news, football, and tennis. The quantities of interest for which you want to calculate the probabilities are: News and Sports. Seems like you are interested in calculating: $P(\text{News}|\text{news}, \text{football}, \text{tennis}), P(\text{News}|\text{news}, \text{football}, \text{tennis})$.
Now we will use Bayes theorem to get:
$$
P(\text{News}|\text{news}, \text{football}, \text{tennis}) = \frac{P(\text{news}, \text{football}, \text{tennis}|\text{News})P(\text{News})}{P(\text{news}, \text{football}, \text{tennis})}
$$
The first term in the numerator is calculated using the fact that given you observe the latent class, that is, News, the observed data, that is news, football, and tennis probabilities are independent (this may be a questionable assumption, but the answer depends on subject matter). You can use the law for calculating the probabilties of independent event.
$$
P(\text{news}, \text{football}, \text{tennis}|\text{News})=P(\text{news}|\text{News})P( \text{football}|\text{News})P(\text{tennis}|\text{News})
$$
Proceeding similarly for Sports, we get:
$$
P(\text{Sports}|\text{news}, \text{football}, \text{tennis}) = \frac{P(\text{news}, \text{football}, \text{tennis}|\text{Sports})P(\text{Sports})}{P(\text{news}, \text{football}, \text{tennis})}
$$
$$
P(\text{news}, \text{football}, \text{tennis}|\text{Sports})=P(\text{news}|\text{Sports})P( \text{football}|\text{Sports})P(\text{tennis}|\text{Sports})
$$
The denominator for both cases can be calculated by using the Law of total probability.
$$
P(\text{news}, \text{football}, \text{tennis}) =P(\text{news}, \text{football}, \text{tennis}|\text{News})P(\text{News})+ P(\text{news}, \text{football}, \text{tennis}|\text{Sports})P(\text{Sports})
$$
We are now left with only one probability in each case, that is,$P(\text{News})$ and $P(\text{Sports})$, respectively. If we know these, every probability until now can be calculated. This can be determined based on prior knowledge, or in your case it might be already provided to you.
Plugging in all the probabilities gives you the probabilities of interest.
A high probability value for a specific class implies that the observed document belongs to that class (News or Sports). But how do you decided "how high is high", depends, again, on subject matter and a lot of other issues.
intuitively we know that it should belong to "Sports" category.Why? It seems to me given the numbers you chose that it is almost impossible to have the wordnewsinSports. So if the wordnewsis in the document that would trump everything else and make the document highly likely to beNews. – Muhammad Alkarouri Aug 9 '11 at 14:56