JQuery FileTree help

JQuery FileTree help

My customer/boss wants file tree on the web site. The site is a standard HTML coded site with jquery. I have downloaded the plugin and set it in the master directory as jqueryFileTree. I have written the code part in the header of my page but I get no results... How do I install all of the things needed for the file tree to work on my page. I have a time crunch on this too but also need to know for future projects.
 
My code is as follows:
 
$(function(){
      $("#mydivname").fileTree({
            script: "/jqueryFileTree/jqueryFileTree.aspx",
            root: "/serverName/",
            multifolder: false
            }, function(file) { alert(file)
      });
});
 
Where and which connector file do I use and where do I put it on the server?
 
Thanks!