$(function() {

    // Loading

    $("input[type=submit]").click(function() {
        $(this).addClass('loading');
    });

    $("input[type=submit]").blur(function() {
        $(this).removeClass('loading');
    });

    // Modal

    function openDialog(content){
        $(content).show();
        $(content).dialog('open');
        $(content).dialog({
            modal: true,
            position:'center',
            bgiframe: true,
            resizable: false,
            height:200,
            width:200,
            overlay: {
                backgroundColor: '#FFF',
                opacity: 0.1
            },
            buttons: {
                Aceptar: function() {
                    $(this).dialog('close');
                }
            }
        });
    }
    if ($("#modal").length > 0) {
        openDialog($("#modal"));
    }
});

