 var $j = window.jQuery;

$j(document).ready(function(){
  // Reset Font Size
  var originalFontSize = $j('html').css('font-size');
  $j(".resetFont").click(function(){
  $j('html').css('font-size', originalFontSize);
  });
  // Increase Font Size
  $j(".increaseFont").click(function(){
  	var currentFontSize = $j('html').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*1.2;
	$j('html').css('font-size', newFontSize);
	return false;
  });
  // Decrease Font Size
  $j(".decreaseFont").click(function(){
  	var currentFontSize = $j('html').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*0.8;
	$j('html').css('font-size', newFontSize);
	return false;
  });
});