I'm trying to use Beamer to create a presentation however I've got a problem when trying to use \pause to create an overlay.
The following is the code I'm working with...
\documentclass{beamer}
\usepackage{lmodern}
\title[Gene Gain and Loss in the White Rust Pathogen]{Gene Gain and Loss during Evolution of Obligate Parasitism in the White Rust Pathogen of \textit{Arabidopsis thaliana}}
\subtitle[]{\scriptsize Eric Kemen, Anastasia Gardiner, Torsten Schultz-Larsen, Ariane C. Kemen,
\\Alexi L. Balmuth,
Alexandre Robert-Seilaniantz, Kate Bailey, Eric Holub,\\ David J. Studholme, Dan MacLean,
Jonathan D. G. Jones}
\author[Ben]{Ben}
\date[30/01/2013]{30$^\text{th}$ January 2013}
\institute{Imperial College London}
\usetheme{Dresden}
\usecolortheme{beaver}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Study Background}
\section{Study Background}
\begin{itemize}
\item It has been proposed, but not shown, that obligate biotrophy results from:
\begin{enumerate}
\item Reduced selection for maintenance of biosynthetic pathways \pause
\item Gain of mechanisms to evade host recognition or suppress host defence \pause
\end{enumerate}
\item Previous research on powdery mildew fungus \textit{Blumeria graminis} or downy mildew oomycete \textit{Hyaloperonospora arabidopsidis} reveals a close correlation between the parasitism and massive gene losses in primary and secondary metabolism
\end{itemize}
\end{frame}
\section{Study Methodology}
\begin{frame}
\frametitle{Study Methodology}
\end{frame}
\section{Study Results}
\begin{frame}
\frametitle{Study Results}
\end{frame}
\section{Author's Discussion}
\begin{frame}
\frametitle{Author's Discussion}
\end{frame}
\section{Conclusions}
\begin{frame}
\frametitle{Conclusions}
\framesubtitle{Implications, and Future Directions}
\end{frame}
\end{document}
After using the \pause commands in the "Study Background" slide I get the same section appended to the header of each slide for each pause.. more visually I mean this

Any idea how to rectify this so there's just one section header as I suspect should be the case?

\sectioncommand should go outside theframeenvironment. As it is, it is being called for each slide in the frame so TeX thinks that your document has 3 sections called "Study Background". – Andrew Stacey Jan 29 at 12:48