Implementation steps

Create slides that needs to be included in slider.
Each Slide must have an id equal to hexSlider_XX,
where XX is a slide number starting from 1 and incremented by 1

All slides must be inside a parent container

Use any one of the following function to apply slider effect

Slider_FadeOut(scContainer, fo_time, wait_time, pauseOnMouseOver)
Slider_FadeIn(scContainer, fo_time, wait_time, pauseOnMouseOver)
Slider_FadeInOut(scContainer, fo_time, wait_time, pauseOnMouseOver)
Slider_Slide(scContainer, fo_time, wait_time, pauseOnMouseOver)
Slider_Continuous(scContainer, fo_time, wait_time, pauseOnMouseOver)

Where scContainer is the id of parent container
fo_time is the animation time in milliseconds
wait_time is the still or no-animation time in milliseconds
pauseOnMouseOver is a flag (one or zero). If set to one, then animation stops when user moves mouse over the slides

Example

<div id='mySlides'>
     <img src='photo1.jpg' id='hexSlider_1'>
     <img src='photo2.jpg' id='hexSlider_2'>
     <img src='photo3.jpg' id='hexSlider_3'>
     <img src='photo4.jpg' id='hexSlider_4'>
</div>

<script type='text/javascript'>
window.onload = function()
{
     Slider_FadeOut('mySlides', 1000, 4000, 1);
}
</script>