To address your Iframe link problem...
create an Iframe with this code:
<iframe src="*yourpagenamehere*" name="iframe" id="iframe" marginwidth="0" marginheight="0" width="*width*" height="*height*" frameborder="0"></iframe>
and use a link like this
<a href="yourpagehere" target="iframe">Link Text</a>.
When the link is clicked, it will redirect the iframe to the page of your choice.
To use a cycling link, like scrowler said, would require some external script.
There are a few ways that could be addressed-
1. Use javascript to change the page after each click (ordered)
2. Same as above, but randomized
-I hope this helps