jQuery 1 секунды после загрузки страницы

jQuery(document).ready(function() {
    setTimeout(function() {
         ....
    }, 2000);
});
Defeated Dotterel