Firstly, on index.html, you have an extra initialization code that should be removed:
Code:
ddsmoothmenu.init({
mainmenuid: "smoothmenu-ajax",
orientation: 'v', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu-v', //class added to menu's outer DIV
//customtheme: ["#804000", "#482400"],
contentsource: ["smoothcontainer", "smoothmenu.htm"]//"markup" or ["container_id", "path_to_menu_file"]
})
Secondly, for the remaining initialization code, there are some errors, specifically, the part in red:
Code:
ddsmoothmenu.init({
mainmenuid: "smoothmenu-ajax",
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: ["smoothcontainer", "smoothmenu.htm"] //"markup" or ["container_id", "path_to_menu_file"]
})
The code in red should correspond to the main menu id found inside smoothmenu.htm, in your case, "smoothmenu1". Also in smoothmenu.htm, it should just contain the markup of the menu, without the <html> and <body> tags which you currently have.
As you can see, quite a few errors.
Bookmarks