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