Well, here are some ideas:
1)
Create an array in JavaScript with names of the pages you want to have in your slideshow.
2)
Use a variable to keep track of the page you currently display. You could either use the page name (= same as in the array), or the index of the current page in the array.
3)
Write a script to iterate through your array.
For starters, some code to set an iframe's "src":
Code:
<iframe id="your_iframe" src="start.html"></iframe>
<script language="JavaScript" type="text/javascript">
<!--
function changePage()
{
var e = document.getElementById('your_iframe');
e.src = 'http://www.htmlcenter.com/';
}
//-->
</script>
<span style="text-decoration:underline;" onclick="javascript:changePage();">Change iframe to HTMLCenter</span>
Just a quick draft to get you started - no guarantees.
Hope that helps you!
Till