var textFontSize=16;
function fontUp()
{
	if(textFontSize==20)return;
	document.getElementById("resizeableFont").style.fontSize=(++textFontSize)+"pt";
	jQuery('.questionDescription').css('font-size',textFontSize+"pt");
	jQuery('.questionAnswer').css('font-size',textFontSize+"pt");
	jQuery('.qinfowrapper').css('font-size',textFontSize+"px");

}
function fontDown()
{
	if(textFontSize==12)return;
	document.getElementById("resizeableFont").style.fontSize=(--textFontSize)+"pt";
	jQuery('.questionDescription').css('font-size',textFontSize+"pt");
	jQuery('.questionAnswer').css('font-size',textFontSize+"pt");
	jQuery('.qinfowrapper').css('font-size',textFontSize+"px");
}
