﻿//$().ready(function () {
//    $('.ui-datepicker').datepicker({
//        dateFormat: 'dd.mm.yy',
//        buttonImage: '@Url.Content("~/Content/calendar.gif")',
//        buttonImageOnly: true,
//        showOn: "both"
//    });
//});

$(function () {
    pictureDialog = $("#picture-dialog").dialog({
        modal: true,
        buttons: [
                {
                    text: "Schließen",
                    click: function () { $(this).dialog("close"); }
                }
	        ],
        show: 'puff',
        autoOpen: false,
        hide: 'puff',
        width: '1030px'
    });
});

function showAdventskalender(sender) {
    $("#picture-dialog > img").attr({ src: sender.src });
    $("#picture-dialog").dialog('open');
}
