﻿$(function() {
    var options = {
        overlayCss: {
            backgroundColor: '#000',
            cursor: 'wait'
        },
        containerCss: {
            width: '256px'
        }
    };
    $("#matchingGameLink").click(function(e) {
        e.preventDefault();
        $('#matchingGameContent').modal(options);
    });
    $("#playShopLink").click(function(e) {
        e.preventDefault();
        $('#playShopContent').modal(options);
    });
    $("#calcLink").click(function(e) {
        e.preventDefault();
        $('#calcContent').modal(options);
    });
    $("#moneyBoxLink").click(function(e) {
        e.preventDefault();
        $('#moneyBoxContent').modal(options);
    });
    $("#listGameLink").click(function(e) {
        e.preventDefault();
        $('#shoppingListContent').modal(options);
    });
    $("#hideLink").click(function(e) {
        e.preventDefault();
        $('#hideAndSeekContent').modal(options);
    });
});