$(function() {
    $("#wilsonDialog").dialog({
        height: 500,
        width: 600,
        autoOpen: false,
        bgIframe: true,
        modal: true,
        resizable: false,
        draggable: false,
        position: "center",
        open: function(event, ui) {
            $("#wilsonContent").load("/general/wilson_order");
            $("button").show();
        },
        buttons: {
            "Tee ennakkotilaus": function() {
                $("#wilsonForm").submit();
            },
            "Sulje": function() {
                $(this).dialog("close");
            }
        }
    });

    $("#orderLink").click(function () {
        $("#wilsonDialog").dialog('open');
        return false;
    });

});
