I am trying to implement a style to name tables and figures depending on the section for a thesis and can't figure out how to do it with LaTeX.
In the end it should look like this:

and my document:
\documentclass{article}
\begin{document}
\section{Start}
Start text
\section{Middle}
Middle text
\begin{table}[h]
\centering
\begin{tabular}{l}
first table\\
\end{tabular}
\caption{A normal table}
\end{table}
\section*{Supplemental}
\begin{table}[h]
\centering
\begin{tabular}{l}
table in supplemental part\\
\end{tabular}
\caption{This should read: ``Table S1: caption text''}
\end{table}
\end{document}
I don't want to change the naming permanently, it should continue normally in the next chapter. Is there any easy way to accomplish something like this?

hyperreffunctionality? Why do you mention chapter when your MWE contains no\chapterand usesarticle? – Werner Jan 16 '12 at 23:01hyperrefis not necessary but would be nice of course.\chapteris in my original document but I wanted to keep the example small, just assume next section instead of chapter. – Alexander Jan 16 '12 at 23:13