top of page

GALLERY

Get in touch with us

TEL: +1 (246) 428 - 3271

EMAIL: info@eaairlines.com

 

Executive Air Limited

South Ramp Hangar

Grantley Adams Intl. Airport

Christ Church.

Barbados, W.I.

 

© 2021 Executive Airlines Ltd.

bottom of page
// Get the Multi State Box element by ID var multiStateBox = $w("#aboutUs"); // Set the initial state var currentState = 0; // Set the interval in milliseconds var interval = 5000; // Create a timer to change the state at regular intervals setInterval(function() { // Update the state currentState++; if (currentState >= multiStateBox.states.length) { currentState = 0; } // Set the new state multiStateBox.changeState(currentState); }, interval);