﻿$(document).ready(function () {
    $("#popupClose").click(function () {
        $(this).parents("#popupOuter").animate({ opacity: 'hide' }, "2000");
        return false;
    });
});
