$(document).ready(function(){
  var fontSize = 11;
  var lineHeight = 15;
  $(".s_font .sm a").click(function(){
    if (fontSize > 9) {
      fontSize -= 2;
      lineHeight -= 1;
      $("#payload").animate({fontSize: fontSize, lineHeight: lineHeight});
    }
    return false;
  });
  $(".s_font .bg a").click(function(){
    if (fontSize < 16) {
      fontSize += 2;
      lineHeight += 1;
      $("#payload").animate({fontSize: fontSize, lineHeight: lineHeight});
    }
    return false;
  });
});


