Sería fácil el cambio:
Código HTML:
<html>
<head>
<script>
function mostrarTexto(texto){
document.getElementById("capaTexto").innerText=texto;
}
</script>
</head>
<body>
<img src="imagen.jpg" onMouseOver="mostrarTexto('Macromedia')" onMouseOut="mostrarTexto('')">
<div id="capaTexto"></div>
</body>
</html>