﻿$(function () {

    //$.cookie('age_verify_cookie', null);

    var pop = function () {
        $('#AgeOverlay').css({ "display": "block", opacity: 0.7, "width": $(document).width(), "height": $(document).height() });
        $('#AgeVerifyBox').css({ "display": "block" });

        $('#AgeVerifyNo').click(function () {
            window.location.href = 'http://www.disneyworld.com';
        });

        $('#AgeVerifyYes').click(function () {
            $(this).css("display", "none");
            $('#AgeOverlay').css("display", "none");
            $('#AgeVerifyBox').css("display", "none");
            $.cookie('age_verify_cookie', 'not_in_view', { expires: 7 });
        });
    }

    // show the age verifiaction if the view cookie has not been set
    if ($.cookie('age_verify_cookie') != 'not_in_view') {
        pop.call($('#AgeVerifyBox'));
    }

    $(window).resize(function () {
        $('#AgeVerifyBox').css("display") == 'block' ? pop.call($('#AgeVerifyBox')) : "";
    });
});
