jQuery(document).ready(function($){

// Reset Font Size
//  var originalFontSize = $('html').css('font-size');
//    $(".resetFont").click(function(){
//    $('html').css('font-size', originalFontSize);
//  });

// Increase Font Size
//  $(".increaseFont").click(function(){
//    var currentFontSize = $('html').css('font-size');
//    var currentFontSizeNum = parseFloat(currentFontSize, 10);
//    var newFontSize = currentFontSizeNum*1.2;
//    $('html').css('font-size', newFontSize);
//    return false;
//  });

// Decrease Font Size
//  $(".decreaseFont").click(function(){
//    var currentFontSize = $('html').css('font-size');
//    var currentFontSizeNum = parseFloat(currentFontSize, 10);
//    var newFontSize = currentFontSizeNum*0.8;
//    $('html').css('font-size', newFontSize);
//    return false;
//  });


var fontPixelSize = 13;
var fontLineHeight = 1.231;


$("a.decreaseFont").click(function(){
	fontPixelSize = fontPixelSize*0.9;
	fontLineHeight = fontLineHeight*0.88;
    $('body').css('font-size', fontPixelSize);
	$('body').css('line-height', fontLineHeight);
});

$("a.increaseFont").click(function(){
	fontPixelSize = fontPixelSize*1.1;
	fontLineHeight = fontLineHeight*1.08;
	$('body').css('line-height', fontLineHeight);
    $('body').css('font-size', fontPixelSize);
});

$("a.resetFont").click(function(){
	fontPixelSize = 13;
	fontLineHeight = 1.231;	
    $('body').css('font-size', fontPixelSize);
	$('body').css('line-height', fontLineHeight);
});



});