function ShowMessage(str)
{
  $("#noticeWnd .text").empty();
  $("#noticeWnd .text").text(str);
  $("#noticeWnd").show();
  setTimeout('$("#noticeWnd").hide()', 5000);
}

$(document).ready
(function()
    {
      //ShowMessage("Сообщение пользователю!");
      
      //setTimeout('$("#noticeWnd").hide()', 5000);
      $("#noticeWnd .close").click(function(e){
            var id_info=$(this).attr("id");
            //alert(id_info);
            /*здесь вызвать функцию, чтобы не показывать в дальнейшем*/
            $.ajax({
                type: "POST",
                url: "/inc/blocks/notice/hide_msg.php",
                async: false,
                data: "data="+id_info
                  });
            $("#noticeWnd").hide();
            } );
    });