function changeFontSize(inc)
{
	var standardSize = $('html').css('font-size');
	standardSize = parseInt(standardSize.replace("px", ""));
	if(inc=='normal'){
	$(".resizer").css("font-size", '100%');
	$(".normal").css("font-weight", 'bold');
	$(".big").css("font-weight", 'normal');
	$(".bigger").css("font-weight", 'normal');
	}
	if(inc=='big'){
	$(".resizer").css("font-size", '120%');
	$(".normal").css("font-weight", 'normal');
	$(".big").css("font-weight", 'bold');
	$(".bigger").css("font-weight", 'normal');
	}
	if(inc=='bigger'){
	$(".resizer").css("font-size", '140%');
	$(".normal").css("font-weight", 'normal');
	$(".big").css("font-weight", 'normal');
	$(".bigger").css("font-weight", 'bold');
	}
}

