Trevor Lawrence said:
I can look for some code to do this, but you will need to use the
Code/HTML view of FrontPage. OK with you ?
Here is some code whcih uses an absolutely postioned <div> for the image,
rather than a table cell.
The key part is;
onmouseover="hideit('layer1');setImage('layer1',
'<img src = \'images\\12.jpg\'>');"
onmouseout="hideit('layer1');"
This can be added to your menu item. To get different images for diffrent
items, change the image name on each menu item
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>This is the page</title>
<script language="JavaScript">
function hideit(elid)
{
var e = document.getElementById(elid).style
e.display = (e.display != 'block') ? "block" : "none"
}
function setImage(id,txt)
{ document.getElementById(id).innerHTML = txt }
</script>
</head>
<body>
<div id="layer1"
style="position: absolute; width: 100px; height: 25px;
z-index: 1; left: 200px; top: 30px;
font-family: verdana,arial,sans-serif;
font-size: 14px; font-color: black;
border: solid black 1px; display: none;">
</div>
<a href="#"
onmouseover="hideit('layer1');setImage('layer1',
'<img src = \'images\\12.jpg\'>');"
onmouseout="hideit('layer1');" >
Some English text</a>
</body>
</html>