The easiest thing to do is copy slide1.html to the machine you plan to use. You may also want a local copy of bullet.gif so you can see how your page will look with the bullets.
This file is essentially the template to use for each of your "slides".
You do need to stick with the naming convention of slide1.html, slide2.html ....
At the top of each file you need to indicate the number of the slide, and if it is the last in your series.
For example, slide1.html has:
var id=1;
var end=0;
If the last slide is slide 6, it should have:
var id=6;
var end=1;
Only the last slide should have var end=1, all others should have var end=0.
When you are ready, let me know (traceb@rpi.edu) and I'll help you integrate your slides into the full navigation system.
If you prefer to rebuild the whole system on your local machine, you need the following files:
Loading index.html will start with the slide1.html in the upper frame, and nav.html in the lower frame. The forward button will always take you to the next slide in the index. If you are viewing the last slide, clicking forward will take you to the first slide. The previous button is similiar, except if you are viewing the first slide, the previous button will only reload the first page.
Please try to keep the height of each slide as small as possible. This should allow you to present your information without needing to scroll through it on the screen.