$(document).ready(function(){
$(".increaseFont").click(function(){
$('.storyContent .body *').css('font-size', "1.3em");
});
// Decrease Font Size
$(".decreaseFont").click(function(){
$('.storyContent .body *').css('font-size', "1.1em");
});
});
