Change the excerpt length in WordPress. Put this in your theme's functions.php file (or wherever you store custom functions).
<?php function new_excerpt_length( $length ) { return 200; } add_filter( 'excerpt_length', 'new_excerpt_length' ); ?>