var font_resize = '#maincontent,#inthenews,#contact';
var size_var = 0;

$(document).ready(function(){
  // Reset Font Size
  var originalFontSize = $(font_resize).css('font-size');
  $(".resetFont").click(function(){
  $(font_resize).css('font-size', originalFontSize);
  size_var = 0;
  });

  // Increase Font Size
  $(".increaseFont").click(function(){
  if (size_var<2)
  	{
  	var currentFontSize = $(font_resize).css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*1.2;
	$(font_resize).css('font-size', newFontSize);
	size_var++;
	return false;
	}
  });
  
  // Decrease Font Size
  $(".decreaseFont").click(function(){
  	if (size_var>-1)
  	{
  	var currentFontSize = $(font_resize).css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*0.8;
	$(font_resize).css('font-size', newFontSize);
	size_var--;
	return false;
	}
  });
});
