jQuery(document).ready(function() {
  jQuery(".important_popup_holder").fadeIn();
  jQuery(".important_popup .close").click(function(){
        closePopup();
    });
    setTimeout("closePopup();",8000);
});

function closePopup(){
    jQuery('.important_popup_holder').remove();
}

