Vyacheslav.Y,
а по такому принципу не подойдет ?
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<script>
$( document ).ready(function() {
setTimeout(function () {
alert('ok')
},1000);
setTimeout(function () {
alert('ok1')
},4000);
setTimeout(function () {
alert('ok2')
},6000);
});
</script>
</body>
</html>