
/**
 * Increase/decrease font-size
 * 
 */
$(document).ready(function() {

    var originalFontSize = $('html').css('font-size');
    
    $("#resetFontSize").click(function(){
        $('html').css('font-size', originalFontSize);
        return false;
    });

    $("#increaseFontSize").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;
    });

    $("#decreaseFontSize").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;
    });
});