I want to make a bibliography like this. With one citation in superscript I want to link to the list Reference 1. With the second citation to Reference 2 and so on. And in each chapter the reference numeration should begin again from 1. Thanks.

Edit: Here is a minimal working example. You have to run this code with LaTeX, then with BIBTeX, then the EA01.tex file with LaTeX, and then again the first one with LaTeX.
\begin{filecontents}{EA01.tex}
\documentclass{article}
\usepackage{fancyhdr,lipsum}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyhead[C]{Exp Clin Endocrinol Diabetes $\bullet$ 2001 $\bullet$ 109 Suppl 2:S122-34}
\fancyfoot[RO,LE]{\thepage}
\title{Integration of biochemical and physiologic effects of insulin on glucose metabolism}
\author{Newsholme EA\\
Merton College, Oxford, United Kingdom
\and Dimitriadis G.}
\date{}
\begin{document}
\maketitle
\thispagestyle{fancy}
\begin{abstract}
\lipsum
\end{abstract}
\lipsum
\end{document}
\end{filecontents}
\begin{filecontents}{biblio.bib}
@Article{EA01,
author = {E. A. Newsholme and G. Dimitriadis},
title = {\href{run:EA01.pdf}{Integration of biochemical and physiologic effects of insulin on glucose metabolism}},
journal = {Experimental and Clinical Endocrinology \& Diabetes},
year = {2001},
volume = {109 Suppl 2},
pages = {S122-34},
note = {Review}}
\end{filecontents}
\documentclass{book}
\usepackage[pagebackref,colorlinks]{hyperref}
\hypersetup{pdfnewwindow}
\usepackage[super]{natbib}
\usepackage{filecontents}
\begin{document}
\mainmatter
I want this cite \cite{EA01} to link a list of references, as seen in the picture.
\bibliographystyle{plain}
\bibliography{biblio}
\end{document}


\documentclass{...}and ending with\end{document}. – cfr May 31 '14 at 23:08