/**
 * @author Elevel.it
 */

var minFontSize=12;
var maxFontSize=18;


/**
 * Aumenta la dimensione del font
 */
function increaseFontSize() {
   var t = document.getElementById('testo');
   var p = $$('#testo p','#testo h2','#testo div','#testo li','#testo a');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=maxFontSize) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}

/**
 * Diminuisce la dimensione del font
 */
function decreaseFontSize() {
   var t = document.getElementById('testo');
   var p = $$('#testo p','#testo h2','#testo div','#testo li','#testo a');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=minFontSize) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}