$(document).ready(function(){var originalFontSize="12px";$(".resetFont").click(function(){$(".Stage div, .Stage p, .Stage span, .Stage li").css('fontSize',originalFontSize);return false});$(".increaseFont").click(function(){var currentFontSize=$(".Stage div, .Stage p, .Stage span, .Stage li").css('fontSize');var currentFontSizeNum=parseFloat(currentFontSize,10);var newFontSize=currentFontSizeNum*1.2;$(".Stage div, .Stage p, .Stage span, .Stage li").css('fontSize',newFontSize);return false});$(".decreaseFont").click(function(){var currentFontSize=$(".Stage div, .Stage p, .Stage span, .Stage li").css('fontSize');var currentFontSizeNum=parseFloat(currentFontSize,10);var newFontSize=currentFontSizeNum*0.8;$(".Stage div, .Stage p, .Stage span, .Stage li").css('fontSize',newFontSize);return false})});