//куки окошко
(function () {
$(document).ready(function () {
if (document.cookie.indexOf('modalClosed=true') !== -1) {
$('#modal-window').hide();
} else {
$('#close-button').click(function () {
var date = new Date();
date.setTime(date.getTime() + (24 * 60 * 60 * 1000)); // Срок хранения куки - 1 день
document.cookie = 'modalClosed=true; expires=' + date.toUTCString() + '; path=/';
$('#modal-window').hide();
});
}
});
})();
//куки окошко