﻿$(document).ready(function() {

    $(".ivesia-contact").hover(function() {
        document.getElementById('whypopup').style.display = 'block';
    });
    $(".close").click(function() {
        document.getElementById('whypopup').style.display = 'none';
    });    
});