Pagination issue for Custom Post type in wordpress 3.0

the bellow code works for me:

<?php
        query_posts(array(
            'post_type' => 'portfolio', // can be custom post type
            'orderby'=> 'menu_order',
			'paged'=>$paged, 
			
        ));
        
        ?>

we can adjust the number of post to be displayed in wp admin dash board settings > reading.

Thanks friends for your help.