$(document).ready(function() {
    setTimeout('$(".popUp").fadeIn("slow");', 1000);
    $("#close").click(function() {
        $(".popUp").fadeOut("normal");
    });
    setTimeout('$(".popUp").fadeOut("normal");', 10000);
});
