Where you have:
HTML Code:
<td><a href="#" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()"><img src="images/solutions.jpg" width="190" height="21" border="0"></a></td>
Just change # to whatever page you want it to link to ex:
HTML Code:
<td><a href="solutions.htm" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()"><img src="images/solutions.jpg" width="190" height="21" border="0"></a></td>
On another note, in the script where you have:
Code:
linkset[0]+='<a href="#"_blank">xx Tech</a>'
_blank" doesn't belong there and will do nothing, except perhaps cause an error and/or odd behavior for some browsers.
Bookmarks