﻿$(document).ready(function() {

    $(".ivesia-contact").hover(function() {
        document.getElementById('popup').style.display = 'block';        
    });
    $(".close").click(function() {
        document.getElementById('popup').style.display = 'none';
    });
    $(".resource").click(function() {
    //document.getElementById('resource-expand').style.display = 'block';
     // $('#light', window.parent.parent.document).fadeIn("slow");
     //$('#fade', window.parent.parent.document).attr("style", "display:block;");    
    });
    $(".rcclose").click(function() {
    //document.getElementById('resource-expand').style.display = 'none';
    //$('#fade', window.parent.parent.document).attr("style", "display:none;");    
    });
});