Aguarde 0,5 após a função JavaScript

statement1();
setTimeout(function() {
    statement2();
}, 500);
Rays