function changeFontSize()
{
	var hContentP = jQuery("#contentLeft p, #contentLeft ul, #contentLeft table");

	var hASmallFontHref = jQuery('#setSmallFont');
	hASmallFontHref.click(function(event)
	{
		hContentP.removeClass("mediumFont");
		hContentP.removeClass("bigFont");
		hContentP.addClass("smallFont");
	});
	
	var hAMediumFontHref = jQuery('#setMediumFont');
	hAMediumFontHref.click(function(event)
	{
		hContentP.removeClass("smallFont");
		hContentP.removeClass("bigFont");
		hContentP.addClass("mediumFont");
	});
	
	var hABigFontHref = jQuery('#setBigFont');
	hABigFontHref.click(function(event)
	{
		hContentP.removeClass("smallFont");
		hContentP.removeClass("mediumFont");
		hContentP.addClass("bigFont");
	});	
}
