$(document).ready(function(){
  // Increase Font Size
  $(".increaseFont").click(function(){
  	var currentFontSize = $('#copy-Spec,#copy').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
	var newFontSize = currentFontSizeNum + 5;
	if (newFontSize < 28) {
	$('#copy-Spec,#copy').css('font-size', newFontSize);
	}
	return false;
  });
  // Decrease Font Size
  $(".decreaseFont").click(function(){
  	var currentFontSize = $('#copy-Spec,#copy').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
	var newFontSize = currentFontSizeNum - 5;
	if ( newFontSize > 12 ) {
	$('#copy-Spec,#copy').css('font-size', newFontSize);
	}
	return false;
  });
});



