preparing a presentation, I have a small problem in practice, but not for my nerves.

I constructed a graph. It consists of two circles, A and B, connected by two arrows. One points from circle A to B, the other should point the other way round, from B to A. How can I reverse it?
Here the code:
Code: Select all
\begin{pgfpicture}{0cm}{0cm}{5cm}{0.1cm}
\pgfputat{\pgfxy(3,1.5)}{\pgfbox[center,center]{A}}
\pgfcircle[stroke]{\pgfxy(3,1.5)}{1cm}
\pgfsetendarrow{\pgfarrowto}
\pgfxycurve(3.75,2.5)(4.5, 3)(5.5,3)(6.25,2.5)
\pgfputat{\pgfxy(7,1.5)}{\pgfbox[center,center]{B}}
\pgfcircle[stroke]{\pgfxy(7,1.5)}{1cm}
\pgfsetendarrow{\pgfarrowto}
\pgfxycurve(3.75,0.5)(4.5, 0)(5.5,0)(6.25,0.5)
\end{pgfpicture}
Greetings,
jomike