http://www.virtualnorthland.com/panos/caf/
click on tour extras then click tickerhoof day i made a previous and next buttons. added some of the code i used below. obviously the plugins are called pre and next.
<action name="aday2">
set(plugin[pre].visible,true);
set(plugin[next].onclick,aday3());
set(plugin[pre].onclick,aday());
</action>
<action name="aday3">
set(plugin[next].onclick,aday4());
set(plugin[pre].onclick,aday2());
</action>
<action name="aday10">
set(plugin[next].visible,true);
set(plugin[next].onclick,aday11());
set(plugin[pre].onclick,aday9());
</action>
<action name="aday11">
set(plugin[next].visible,false);
set(plugin[pre].onclick,aday10());
</action>