I'm observing strange behavior with hyperref and the \tableofcontents. Clicking on List of Tables or Synopsis takes me to the Preface page. Perhaps it has something to do with \chapter* titles for these sections.
\documentclass{amsbook}
\usepackage[hypertexnames=false]{hyperref}
\begin{document}
\chapter*{Preface}
\tableofcontents
\listoftables
\chapter*{Synopsis}
\section{Section Title}
\begin{table}
\begin{tabular}{c}
stuff
\end{tabular}
\caption{stuff}
\end{table}
\end{document}