This works pretty good except it is limited to 10 posts since my blog is set to show 10 posts maximum.
$featured_query = new WP_Query('cat=3');
while( $featured_query->have_posts() ){
$featured_query->the_post();
$postcount++;
...
How can I override that setting and get ALL posts in that category regardless of the maximum posts setting?