You need to set an image as a link, which is done by putting it between anchor (<a>) tags, like so:
CODE
<a href="page2.html" title="Next page"><img src="picture1.jpg"/></a>
Something like that will go on the first page. Now, on the next page, it'd be like this:
CODE
<a href="page3.html" title="Next page"><img src="picture2.jpg"/></a>
and so forth, for each page.