﻿$(document).ready(function() {
    $(".why-popup").click(function() {
        document.getElementById('service-whyivesia').style.display = 'block';
    });
    $(".popupclose").click(function() {
       document.getElementById('service-whyivesia').style.display = 'none';
    });
});