prontera,155,188,0 script test 910,{
set .@i, 1; // start with "danica_1"
do {
if (.@i == 0) set .@i, 4; // #1, Previous wraps around to #4
if (.@i == 5) set .@i, 1; // #4, Next wraps around to #1
// remove old image and show current one
cutin "",255;
cutin "danica_"+.@i, 4;
// _____1___2_3________4
select("Next::Previous:Close");
set .@i, .@i - (@menu - 2);
} while (@menu != 4);
cutin "",255;
close;
}