$(document).ready(function(){
  // Reset Font Size
  var originalFontSize = $('html').css('font-size');
    $(".reset").click(function(){
    $('html').css('font-size', originalFontSize);
  });
  // Increase Font Size
  $(".increase").click(function(){
    var currentFontSize = $('html').css('font-size');
    var currentFontSizeNum = parseFloat(currentFontSize, 12);
    var newFontSize = currentFontSizeNum*1.1;
    $('html').css('font-size', newFontSize);
    return false;
  });
  // Decrease Font Size
  $(".decrease").click(function(){
    var currentFontSize = $('html').css('font-size');
    var currentFontSizeNum = parseFloat(currentFontSize, 12);
    var newFontSize = currentFontSizeNum*0.9;
    $('html').css('font-size', newFontSize);
    return false;
  });
});
