/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Patrick Hunlock | http://www.hunlock.com/ */
function setStartingFontSize() {
  if (screen.width) {
    if (screen.width<600) {_baseSize = .8;}
    if ((screen.width>=600)&&(screen.width<=800)) {_baseSize = .8;}
    if ((screen.width>=800)&&(screen.width<=1000)) {_baseSize = 1;}
    if ((screen.width>=1000)&&(screen.width<=1100)) {_baseSize = 1.2;}
    if ((screen.width>=1100)&&(screen.width<=1300)) {_baseSize = 1.5;}
    if ((screen.width>=1300)&&(screen.width<=1500)) {_baseSize = 1.7;}
    if (screen.width>=1500) {_baseSize = 2;}
    document.getElementsByTagName("body")[0].style.fontSize=_baseSize+'em';
  }
}
setStartingFontSize();

