Two things. Firstly, inside switchmenu_head.css, the surrounding STYLE tags inside this file need to be removed. Secondly, the HTML for the menu cannot be added inside a .js file as you have done:
Code:
<SCRIPT SRC="switchmenu_wheremenu.js">
</SCRIPT>
Only valid JavaScript can be saved as external .js files. You'll need to put HTML code inside a regular text file, save it as something like "menu.htm", then included onto your page via server side inclusion, such as SSI (server side includes), assuming your pages are SSI enabled:
Code:
<!--#include virtual="/menu.htm"-->
If your pages are PHP, then use PHP's include() function instead, and so on.
Bookmarks