function fontLarge ( )
{
	$("*").css ( "font-size" , "16px" );

	$("#BTN_FONT_SMALL").attr("src","./img/header/adjustFontSizeSmall.png");
	$("#BTN_FONT_LARGE").attr("src","./img/header/adjustFontSizeLarge_on.png");
}


function fontSmall ( )
{
	$("*").css( "font-size" , "13px" );

	$("#BTN_FONT_SMALL").attr("src","./img/header/adjustFontSizeSmall_on.png");
	$("#BTN_FONT_LARGE").attr("src","./img/header/adjustFontSizeLarge.png");
}
