$(document).ready(function () {
$("#headroom_header").headroom();
setTimeout(function () {
$(".mask").addClass("active");
}, 3000);
// // Click function for show the Modal
// $(".show").on("click", function () {
// $(this).next(".mask").addClass("active");
// });
function closeModal() {
$(".mask").removeClass("active");
}
$(".close, .mask").on("click", function () {
closeModal();
});
$('.dropdown').hover(
function () {
$(this).children('.dropdown-menu').slideDown(200);
},
function () {
$(this).children('.dropdown-menu').slideUp(200);
}
);
});