<!-- 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 = 2000; // delay in milliseconds (5000 = 5 secs)
Onecurrent = 0;
OneLinks = "http://www.freewarejava.com";

function Onenext() {
if (document.info_form.masthead[Onecurrent+1]) {
document.images.Oneshow.src = 'magazines/frontpages/small/'+document.info_form.masthead[Onecurrent+1].value;
document.info_form.masthead.selectedIndex = ++Onecurrent;
   }
else Onefirst();
}
function Oneprevious() {
if (Onecurrent-1 >= 0) {
document.images.Oneshow.src = 'magazines/frontpages/small/'+document.info_form.masthead[Onecurrent-1].value;
document.info_form.masthead.selectedIndex = --Onecurrent;
   }
else Onelast();
}
function Onefirst() {
Onecurrent = 0;
document.images.Oneshow.src = 'magazines/frontpages/small/'+document.info_form.masthead[0].value;
document.info_form.masthead.selectedIndex = 0;
}
function Onelast() {
Onecurrent = document.info_form.masthead.length-1;
document.images.Oneshow.src = 'magazines/frontpages/small/'+document.info_form.masthead[Onecurrent].value;
document.info_form.masthead.selectedIndex = Onecurrent;
}
function Oneap(text) {
document.info_form.mastheadbutton.value = (text == "Stop") ? "Start" : "Stop";
Onerotate();
}
function Onechange() {
Onecurrent = document.info_form.masthead.selectedIndex;
document.images.Oneshow.src = 'magazines/frontpages/small/'+document.info_form.masthead[Onecurrent].value;
document.info_form.oneupdate.value=1;
}
function Onerotate() {
if (document.info_form.mastheadbutton.value == "Stop") {
Onecurrent = (Onecurrent == document.info_form.masthead.length-1) ? 0 : Onecurrent+1;
document.images.Oneshow.src = 'magazines/frontpages/small/'+document.info_form.masthead[Onecurrent].value;
document.info_form.masthead.selectedIndex = Onecurrent;
window.setTimeout("Onerotate()", Onerotate_delay);
}
}
function Onetransport(){
document.info_form.oneupdate.value=1;
document.info_form.submit();
}
//  End -->
