

<!-- Begin

//3-way slideshow- by Suzanne Arnold (http://jandr.com/, suzanne@mail.jandr.com)
//Script featured on JavaScript Kit (http://javascriptkit.com)
//Credit must stay intact

var Onerotate_delay = 4000; // delay in milliseconds (4000 = 4 secs)
Onecurrent = 0;
<!---SLIDE_SHOW_ARRAY--->
function Onenext() {
if (document.Oneslideform.Oneslide[Onecurrent+1]) {
document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent+1].value;
document.Oneslideform.Oneslide.selectedIndex = ++Onecurrent;
document.getElementById("slidenum").value = Onecurrent + 1;
   }
else Onefirst();
}
function Oneprevious() {
if (Onecurrent-1 >= 0) {
document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent-1].value;
document.Oneslideform.Oneslide.selectedIndex = --Onecurrent;
document.getElementById("slidenum").value = Onecurrent + 1;
   }
else Onelast();
}
function Onefirst() {
Onecurrent = 0;
document.images.Oneshow.src = document.Oneslideform.Oneslide[0].value;
document.Oneslideform.Oneslide.selectedIndex = 0;
document.getElementById("slidenum").value = Onecurrent + 1;
}
function Onelast() {
Onecurrent = document.Oneslideform.Oneslide.length-1;
document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
document.Oneslideform.Oneslide.selectedIndex = Onecurrent;
document.getElementById("slidenum").value = Onecurrent + 1;
}
function Oneap(text) {
document.Oneslideform.Oneslidebutton.value = (text == "Stop") ? "Start" : "Stop";
Onerotate();
}
function Onestart(x) {
if (x > 1){
Onerotate_delay = x;}    
window.setTimeout("Onerotate()", Onerotate_delay);
document.getElementById("slidenum").value = Onecurrent + 1;
}
function Onechange() {
Onecurrent = document.Oneslideform.Oneslide.selectedIndex;
document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
document.getElementById("slidenum").value = Onecurrent + 1;
}
function Onerotate() {
if (document.Oneslideform.Oneslidebutton.value == "Stop") {
Onecurrent = (Onecurrent == document.Oneslideform.Oneslide.length-1) ? 0 : Onecurrent+1;
if (document.images.Oneshow.filters)
document.images.Oneshow.filters[0].apply()
document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
if (document.images.Oneshow.filters)
document.images.Oneshow.filters[0].play()
document.Oneslideform.Oneslide.selectedIndex = Onecurrent;
if (document.images.Oneshow.filters)
window.setTimeout("Onerotate()", Onerotate_delay + 2000);
else
window.setTimeout("Onerotate()", Onerotate_delay);
document.getElementById("slidenum").value = Onecurrent + 1;
}
}
//  End -->

