Código JavaScript:
Ver original
$(document).ready(function(){ $("a").mouseover(function(){ $(this).toggle( function(){ $(this).animate({"font-size":"20px"},"slow"); }, function(){ $(this).animate({"font-size":"16px"},"slow"); } ); }); });
Sencillamente no ocurre nada y no encuentro el fallo.