<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript">
$(this).animate({fontSize:"+=3px"});
$(this).animate({letterSpacing:"+=2px"});
$(document).ready(function(){
$("body").delegate("p","click",changeSize);
$("body").delegate("p","click",changeSpacing);
$("button").click(function(){
$("body").undelegate("p","click");