how can i connect two blocks with a circular arrow? Please see below the example that i've managed to create so far:
\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}[node distance = 3cm, auto]
\tikzstyle{block} = [rectangle, draw, fill=white!20,
text width=5.5em, text centered, rounded corners, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\node [block] (1) {Text 1};
\node [block, below right of=1] (2) {Text 2};
\node [block, below left of=2] (3) {Text 3};
\node [block, above left of=3] (4) {Text 4};
\path [line] (1) -- (2);
\path [line] (2) -- (3);
\path [line] (3) -- (4);
\path [line] (4) -- (1);
\end{tikzpicture}
\end{document}



