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