Photos
$attachments = get_children( array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' =>'image', 'orderby' => 'menu_order', 'order' => 'asc') );
foreach ( $attachments as $attachment_id => $attachment ) {
echo wp_get_attachment_image( $attachment_id, 'large' );
} ?>