﻿$(document).ready(function(){  // Reset Font Size  
var originalFontSize = $('html').css('font-size');    
$(".resetFont").click(function(){    
$('html').css('font-size', originalFontSize);  }); 
 // Increase Font Size  
 $(".increaseFont").click(function(){   
  var currentFontSize = $('html').css('font-size');  
    var currentFontSizeNum = parseFloat(currentFontSize, 10);   
     var newFontSize = 18;    $('html').css('font-size', newFontSize);   
      return false;  });
      // Max Font Size
      $(".increaseFont2").click(function() {
      var currentFontSize = $('html').css('font-size');
      var currentFontSizeNum = parseFloat(currentFontSize, 10);
      var newFontSize = 20; $('html').css('font-size', newFontSize);    
           return false;  }); });
           
