Getting thumbnails with query

Hi,
I am working on a template, in which i have this code

 
  $args=array(
  'orderby' =>'parent',
  'order' =>'asc',
  'post_type' =>'page',
  'post__in' => array(8,14,),
   );
   $page_query = new WP_Query($args);?>

what i want to do is get pictures of the respective post out of database,based on that array. how can i do that?