function FWresizeFont(resize) {
	var b = $(".content");
	var child = b.children(".inside");
	if (child.length > 0)
		b = child;
	lwResizeFont(b, resize);
}
function lwResizeFont(child, resize) {
	var f = child.css("fontSize");
	if(!child[0]._oF)
		child[0]._oF = f;
	f = parseInt(f);
	if (!isNaN(f)) {
		if (resize == 1 | resize == -1)
			child.css("fontSize", f + resize);
		else if (child[0]._oF)
			child.css("fontSize", parseInt(child[0]._oF));
	}
	var children = child.children("*");
	children.each(function() {
		lwResizeFont($(this), resize);
	});
}
function resetFontSize() {
	FWresizeFont(null);
}