Why is my JQuery Bracketing plugin not running on page load?

Why is my JQuery Bracketing plugin not running on page load?

Hi, I copied the code of JQuery bracketing from GitHub http://www.aropupu.fi/bracket/ and saved them in a folder then in my Dreamweaver CC page I put this in the head tag:

 

<script type="text/javascript" src="scripts/jquery-1.11.2.min.js"></script>

<script type="text/javascript" src="scripts/jquery.brackdt.js"></script>

<script type="text/javascript" src="scripts/jquery.bracket.min.css"></script>

 

<script type="text/javascript" >

 

$(document).ready(function(){

 

    $('#bracket').brackdt({

                       

                        });

});

 

</script>

 

When I load the page nothing happens.  I was expecting the bracketing script to run when the page loads.  Do I have to do more than referencing the js., and css files from here: http://www.aropupu.fi/bracket/ ?

 

Thanks for any help.