$(document).ready(function () {
    $(".galleryList a").removeAttr("href");
    $(".galleryList a").click(function () {
        $(".lightbox").toggleClass("hideLightbox");
        $(".lightbox").css('opacity', 0);
        $(".lightbox").animate({
            opacity: 1
        }, 200, function () {});
        $(".overlay").toggleClass("hiddenOverlay");
        $(".overlay").animate({
            opacity: .7
        }, 200, function () {});
    });
    $(".close").click(function () {
        $(".lightbox").animate({
            opacity: 0
        }, 200, function () {
            $(".lightbox").toggleClass("hideLightbox");
        });
        $(".overlay").animate({
            opacity: 0
        }, 200, function () {
            $(".overlay").toggleClass("hiddenOverlay");
        });
    });
});
