I tried to put two figures in one row and I found that subfigure package could help me. But code:
\documentclass[11pt, a4paper, draft]{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\section{Example }
Lorem ipsum
\begin{figure}
\centering
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[width=\textwidth]{./2pol-hist}
\caption{A gull}
\end{subfigure}
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[width=\textwidth]{./2pol-hist}
\caption{A tiger}
\end{subfigure}
\caption{Pictures}
\end{figure}
\end{document}
reorganize my document, placing figures on the top of page. Why figures aren't below the section, as I specified in latex code?

\usepackage{flafter}If you never want a figure to float out of its section add\usepackage[section]{placeins}– David Carlisle Dec 16 '12 at 21:25