SITE UNDER CONSTRUCTION
autoforward.onPress=function()
{
autoAdvance();
autoforward._visible=false; // make the play button disappear
stopforward._visible=true; // make the stop button visible
setInterval(autoAdvance, 5000) // calls function autoAdvance every 5000 milliseconds
}
stopforward.onPress=function()
{
autoAdvance();
autoforward._visible=true; // make the play button visible
stopforward._visible=false; // make the stop button invisible
clearInterval(autoAdvance) // stop playing
}
function autoAdvance()
{
if (mypic <= 42 && !fadeIn && !fadeOut)
{
fadeout=true;
mypic++;
}
if (mypic > 42) // must not be >= or will stop at 42
{
mypic=1;
}
}

IF YOU WISH TO CONTACT US PLEASE WRITE TO: info@meirlobaton.com