Hi,
Check out the Anchor Center website. We used some javascript to increase the font size. The javascript will increase the size of the font on the body. The key is to have all other font sizes, that you want adjustable, based on the body font size. For instance:
body {font-size: 13px}
h2 {font-size: 105%;} or h2 {font-size: 1.05em;}
All font sizes that you want to remain the same, make sure you use exact PX measurements.
If you grab the javascript from that site, you should be on your way.
HTH,
Joe D.