Trouble with the effects and looks of my treemenu

Trouble with the effects and looks of my treemenu

Hello, I have wanted to create a treemenu with jQuery for quite a time now, then I found an example on http://www.dynamicdrive.com/dynamicindex1/treeview/index.htm and tried to get it working as my own version.

It doesn´t seem to apply the "speed" effect when i click on the text to make it drop down the submenus..?

I will apply the code to this post so you could inspect me and give some feedback if it´s not to much trouble, would be really awesome to be honest :)
I am also going to type the folders I´ve put the objects in etc, I´ll try to provide you with as many details and facts as possible to being able locating the issue.
(All the .js files except menu.js is downloaded from recommended link at DynamicDrive´s website... jquery.treeview.zip is name of downloaded file. HTML file is located in first map of extraced zip file)

HTML Code for menu:

  1. <html>
  2. <head><title></title>
  3. <link rel="stylesheet" href="jquery.treeview.css" />
  4. <script type="text/javascript" src="jquery.treeview.min.js" />
  5. <script src="lib/jquery.cookie.js" type="text/javascript" />

  6. <script src="jquery.treeview.js" type="text/javascript" />
  7. <script type="text/javascript" src="menu.js" />

  8. </head>
  9. <body>

  10. <ul id="mymenu" class="filetree">

  11. <li><a href="#">Bild</a>
  12. <ul>
  13. <li><a href="#">Fotoalbum [Redigerade]</a></li>
  14. <li><a href="#">Fotoalbum [Naturliga]</a></li>
  15. <li><a href="#">Galleri</a></li>
  16. <li><a href="#">Design</a></li>
  17. <li><a href="#">Layouts</a></li>
  18. <li><a href="#">Logotypes</a></li>
  19. <li><a href="#">Portfolio</a></li>
  20. </ul>
  21. </li>

  22. <li><a href="#">Kunskap</a>
  23. <ul>
  24. <li><a href="#">Ordspråk</a></li>
  25. <li><a href="#">Privat inlärning [Video]</a></li>
  26. <li><a href="#">Privat inlärning [Text]</a></li>
  27. <li><a href="#">Hemsidor</a></li>
  28. <li><a href="#">Film</a></li>
  29. <li><a href="#">Musik</a></li>
  30. <li><a href="#">Program</a></li>
  31. <li><a href="#">Kodspråk</a></li>
  32. <li><a href="#">Frågesport</a></li>
  33. <li><a href="#">Hjärnspel</a></li>
  34. <li><a href="#">Uppfinnare</a></li>
  35. <li><a href="#">Ordlista [Special]</a></li>
  36. <li><a href="#">Statistik</a></li>
  37. <li><a href="#">Historia @ Komma ihåg</a></li>
  38. </ul>
  39. </li>

  40. <li><a href="#">Anställning & Tjänster</a>
  41. <ul>
  42. <li><a href="#">Webbdesign</a></li>
  43. <li><a href="#">Teknisk support</a></li>
  44. <li><a href="#">Rådgivning</a></li>
  45. <li><a href="#">Undervisning</a></li>
  46. <li><a href="#">Ljud</a></li>
  47. <li><a href="#">Bild</a></li>
  48. </ul>
  49. </li>

  50. <li><a href="#">Cyber Fox</a>
  51. <ul>
  52. <li><a href="#">Dokumentation</a></li>
  53. <li><a href="#">Information</a></li>
  54. <li><a href="#">Sammarbete</a></li>
  55. </ul>
  56. </li>

  57. <li><a href="#">Blogg</a></li>
  58. <li><a href="#">Forum</a></li>
  59. <li><a href="#">Kontakt</a></li></ul>

  60. </body>
  61. </html>

  62. -----------------------------------------

  63. menu.js Code:

  64. §(document).ready(function() {

  65. §("#mymenu").treeview({
  66. collapsed: true,
  67. animated: "fast",
  68. control: "#treecontrol",
  69. unique: true,
  70. persist: "location",

  71. });

  72. });

---------------------------------------

O.B.S. I am trying to get my menu look like DEMO #3 with a slight modification, I would like those buttons making menu drop down be replaced with only the textarea as button for dropping down, haven´t gotten this far though since I couldn´t get my menu working in the first place...
Im complete stranger to jQuery and not very really educated in Javascript programming, therefore I think, some of the problems remains unsolved for me. I was hoping anyone of you could help me out in this field. 


Many thanks in advance, 
Webdesigner Zinoxxx