<? foreach (query_posts("cat=" . $value->cat_ID . '&orderby=title&order=ASC') as $post):
$args = array(
'cat' => $value->cat_ID,
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page' => 3
);
$lastposts = get_posts( $args );
foreach( $lastposts as $post ){
}
wp_reset_postdata();