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