dialog not defined

dialog not defined

Hi everyone,

I have never tried jquery widgets so this part of jquery UI is new to me. Any suggestions would be appreciated.  The presenting problem is that i get the error "dialog is undefined" error when the following code snippet runs:

    $(function () {
        $("#dialog-1").dialog({
            autoOpen: false,
        });
        $("#TestButton").click(function () {
            $("#dialog1").dialog('open');
        });
    })

Now this error is related to the references.  Here is what I have for jquery references:

    <link rel="stylesheet" href="jquery-ui.min.css">
    <script src="Scripts/jquery-1.10.2.min.js"></script>
    <script src="Scripts/jquery-ui.min.js"></script>
    <link href="Scripts/jquery-ui.min.css" rel="stylesheet" />

The function above runs on an asp.net page while the references are located in the <head> tag of the master page.  

Here are the errors from the Google Console:

Failed to load resource: the server responded with a status of 404 (Not Found)
jquery-1.10.2.min.js Failed to load resource: the server responded with a status of 404 (Not Found)
jquery-ui.min.js Failed to load resource: the server responded with a status of 404 (Not Found)
Bootstrap1:245 Uncaught TypeError: $(...).datepicker is not a function
    at Bootstrap1:245
(anonymous) @ Bootstrap1:245
Bootstrap1:201 Uncaught TypeError: $(...).dialog is not a function
    at HTMLDocument.<anonymous> (Bootstrap1:201)
    at fire (jquery-1.10.2.js:3062)
    at Object.fireWith [as resolveWith] (jquery-1.10.2.js:3174)
    at Function.ready (jquery-1.10.2.js:447)
    at HTMLDocument.completed (jquery-1.10.2.js:118)
(anonymous) @ Bootstrap1:201
fire @ jquery-1.10.2.js:3062
fireWith @ jquery-1.10.2.js:3174
ready @ jquery-1.10.2.js:447
completed @ jquery-1.10.2.js:118
jquery-ui.min.css Failed to load resource: the server responded with a status of 404 (Not Found)

I have searched the net looking for answers and even tried copying some of the code into my page with no resolution.  I anyone can see the error of my ways, please let me know.  Thank you for your help!  This one confounds me!

David