var fontSizes = [12,14,16];
var currentIndexFontSize = 0;
function zoom(){
  if(currentIndexFontSize < fontSizes.length - 1)
  {
    currentIndexFontSize ++;
  }
  else
  {
    currentIndexFontSize = 0;
  }
  $('#content').css({
     'font-size': fontSizes[currentIndexFontSize] + 'px'
  });
}
