Vectorok,
клики обернуть в ready
$(function() {
$("#reset").click(function (e) {
e.preventDefault();
$('body').zoomtext({
recovery: true
});
});
$("#increase").click(function (e) {
e.preventDefault();
$('body').zoomtext({increment: 1.1});
});
$("#decrease").click(function (e) {
e.preventDefault();
$('body').zoomtext({increment: 0.9});
});
});