$(document).ready(function(){
	// Increase Font Size
  $(".larger-text").click(function(){
  	var currentFontSize = $('html').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 13);
    var newFontSize = currentFontSizeNum+5;
	if ( newFontSize < 25 ) {
	$('html').css('font-size', newFontSize);
	}
	return false;
  });
  // Decrease Font Size
  $(".smaller-text").click(function(){
  	var currentFontSize = $('html').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 13);
	var newFontSize = currentFontSizeNum*0.8;
	if ( newFontSize > 8 ) {
	$('html').css('font-size', newFontSize);
	}
	return false;
  });
});