Using custom post type as front home page pagination not working

Add this to your code, before query_posts line:

$paged = get_query_var( 'paged' )?get_query_var( 'paged' ):1;

Should work.