﻿$(function() {
    $(".Lightbox-Background").fadeTo(0, 0);
    $(".Lightbox-Background").show();
    $(".Lightbox-Background").fadeTo("slow", 0.5);

    $(".Lightbox-Message").fadeIn("slow");

    $(".Lightbox-Background").click(function() {
        $(".Lightbox-Background").fadeOut("slow");
        $(".Lightbox-Message").fadeOut("slow");
    });

    $(".Lightbox-Message .Close").click(function() {
        $(".Lightbox-Background").fadeOut("slow");
        $(".Lightbox-Message").fadeOut("slow");
    });
});