One would hope that there are some instructions for this menu but, it looks like here:
Code:
var menuItems = [
["Pathfinders","http://www.apycom.com","","","",,,],
["|Language Arts","http://dhtml-menu.com","","","",,,],
["|Poetry","http://dhtml-menu.com","","","",,,],
["|Science","http://dhtml-menu.com","","","",,,],
["|Math","http://dhtml-menu.com","","","",,,],
["|History","http://dhtml-menu.com","","","",,,],
["|Health","http://dhtml-menu.com","","","",,,],
["|World Language","http://dhtml-menu.com","","","",,,],
["|Vietnam","http://dhtml-menu.com","","","",,,],
["|Buisines ED","http://dhtml-menu.com","","","",,,],
["|Family Consumer Science","http://dhtml-menu.com","","","",,,],
and similar in the newdata1.js file that one can use the javascript: convention to run code instead of simply supplying an address. This is a common feature of these types of menus, usually. It also looks like a target may be able to be specified in one of the empty "" sections, which empty "" section that is, I can't say for sure. I'd start with the first and try them all just to see. Again, instructions for this menu would make these things clearer. Here is what I would try:
Code:
var menuItems = [
["Pathfinders","http://www.apycom.com","","","",,,],
["|Language Arts","javascript:window.open('http://dhtml-menu.com')","","","",,,],
["|Poetry","javascript:parent.frameName.location.href='http://dhtml-menu.com'","","","",,,],
["|Science","http://dhtml-menu.com","_blank","","",,,],
["|Math","http://dhtml-menu.com","frameName","","",,,],
["|History","http://dhtml-menu.com","","","",,,],
["|Health","http://dhtml-menu.com","","","",,,],
["|World Language","http://dhtml-menu.com","","","",,,],
["|Vietnam","http://dhtml-menu.com","","","",,,],
["|Buisines ED","http://dhtml-menu.com","","","",,,],
["|Family Consumer Science","http://dhtml-menu.com","","","",,,],
and then just see what happens when those links are clicked. Where I have 'frameName' use an assigned name of a frame or iframe. If it is an iframe, the 'parent' bit can be skipped. Also 'window.parent' may be required in place of just 'parent' or 'document.frameName' in the case of an iframe.
Bookmarks