// by Michael Pekarek for SPNZ project

$(document).ready(function(){
  
  var fontsize = 11;
  var origfontsize = 11;
  
  $(".origFont").click(function(){
  $('#content').css('font-size',origfontsize+'px');
  });
  
  // Increase Font Size
  
  $(".bigFont").click(function(){
  fontsize += 1;
  $('#content').css('font-size',fontsize+'px');
	return false;
  });
  
  // Decrease Font Size
  $(".smallFont").click(function(){
  fontsize -= 1;
  $('#content').css('font-size',fontsize+'px');
	return false;
  });
});

