﻿$(function() {
    // Dialog			
    $('#dialog-estimate').dialog({
        autoOpen: false,
        width: 750,
        modal: true,
        buttons: {
            "Close": function() {
                $(this).dialog("close");
            }
        }
    });

    // Dialog Link
    $('#dialog_estimate').click(function() {
        $('#dialog-estimate').dialog('open');
        return false;
    });
});
