Thx to this life-saving forum, I was able to create a slide in LaTeX-Beamer that looks almost as I want it to:
\documentclass{beamer}
\usetheme{Hannover}
\begin{document}
\begin{frame}{MyTitle}
\begin{columns}[T]
\begin{column}{.5\textwidth}
\begin{block}{}
\begin{itemize}
\item Item1
\item Item2
\item Item3
\end{itemize}
\end{block}
\end{column}
\begin{column}{.5\textwidth}
\begin{block}{}
\includegraphics[width=0.6\textwidth {imgs/Image1.jpg}
\includegraphics[width=0.6\textwidth]{imgs/Image2.jpg}
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}
Now, I want the two images in the right column to be centered. They are left-aligned. Furthermore I want to have a little vertical space between them. I have tried addvspace{2pt}, vspace*{2pt} but non of these seem to work.
