﻿$(function () {

    $(".popupButton").click(function (e) {
        $(".backgroundModal").fadeTo("slow", 0.7);
        var id = $(this).attr("popup");

        //Center the popup
        $(id).css('top', $(window).height() / 2 - $(id).height() / 2);
        $(id).css('left', $(window).width() / 2 - $(id).width() / 2);

        $(id).fadeIn("slow");
    });

    $(".popupClose").click(function (e) {
        $(".popupModal").fadeOut("slow");
        $(".backgroundModal").fadeOut("slow");
    });
});
