The path to the page (red):
Code:
ssmItems[1]=["Jobs", "Category/jobs.aspx", ""]
ssmItems[2]=["Jewelry", "Category/Jewelry.aspx",""]
Must be valid in relation to the page that the menu is on. So, say you are in the root and hit:
Category/jobs.aspx
Now you are in the Category folder. If then you hit:
Category/Jewelry.aspx
the browser will be looking for:
Category/Category/Jewelry.aspx
which doesn't exist. You must either put all of your pages in one folder, or use the absolute path.
If you are using the sort of local host that sees your base folder for the project as the root, you can do this (the red / represents the root folder):
Code:
ssmItems[1]=["Jobs", "/Category/jobs.aspx", ""]
ssmItems[2]=["Jewelry", "/Category/Jewelry.aspx",""]
Otherwise, you would need to use the full (absolute) path from the root of the hard drive. Something like (I don't know the exact path on your drive):
Code:
ssmItems[1]=["Jobs", "file://localhost/C:/webwork/Category/jobs.aspx", ""]
Bookmarks