    start_slideshow2(1, 2, 4000);
    
    function start_slideshow2(start_frame, end_frame, delay) {
        setTimeout(switch_slides2(start_frame,start_frame,end_frame, delay), delay);
    }
                            
    function switch_slides2(frame, start_frame, end_frame, delay) {
        return (function() {
		if ($('bottom_rotation' + frame) != null) {
            Effect.Fade('bottom_rotation' + frame);
            if (frame == end_frame) { frame = start_frame; } else { frame = frame + 1; }
            setTimeout("Effect.Appear('bottom_rotation" + frame + "');", 850);
            setTimeout(switch_slides2(frame, start_frame, end_frame, delay), delay + 4000);
		}
        })
    }