function changeFontSize(inc)
{
  var p = document.getElementsByTagName('p');
  var b = document.getElementsByTagName('b');
  var l = document.getElementsByTagName('li');
  var h2 = document.getElementsByTagName('h2');
  
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 13;
    }
    p[n].style.fontSize = inc + 1 + 'px';
   }
   
   for(n=0; n<b.length; n++) {
    if(b[n].style.fontSize) {
       var size = parseInt(b[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    b[n].style.fontSize = inc + 'px';
   }
   
   for(n=0; n<l.length; n++) {
    if(l[n].style.fontSize) {
       var size = parseInt(l[n].style.fontSize.replace("px", ""));
    } else {
       var size = 13;
    }
    l[n].style.fontSize = inc + 1 + 'px';
   }
   
   for(n=0; n<h2.length; n++) {
    if(h2[n].style.fontSize) {
       var size = parseInt(h2[n].style.fontSize.replace("px", ""));
    } else {
       var size = 14;
    }
    h2[n].style.fontSize = inc + 2 + 'px';
   }
   
}
