The reason is you're updating your fontSize to the href's value + a set value. Where you should be using the current fontSize. The code would become this:
<a href="5">add 5</a>
<a href="10">add 10</a>
<script type="text/javascript">
$('a').live('click', function(e) {
e.preventDefault(); // Prevent our default method
var oldSize = $("p").css('fontSize'); // Get the current fontsize
var increment = $(this).attr('href'); // Get the amount we want to increment
var newSize = oldSize + increment; // Calculate the new size
var newCss = {color: "#993300", fontSize: newSize+"px"}; // Format our CSS
$("p").css(newCss); // Apply it
return false;
});
// Or for short:
$('a').live('click', function (e) {
e.preventDefault();
$("p").css{color: "#993300", fontSize: ($("p").css('fontSize') + $(this).attr('href')) + "px"});
});
</script>