var contentTimer;
$(document).ready(function () {
    $('#wrapper').hide();
    showContentTimeOut();	
});
function showContentTimeOut() {
    clearTimeout(contentTimer);
    contentTimer = setTimeout(showContent, 2500);
}
function showContent() { 
    $('#wrapper').fadeIn("slow");
}