Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/08/2002, 20:47
Avatar de mamagallo
mamagallo
 
Fecha de Ingreso: marzo-2002
Ubicación: Caracas, Venezuela
Mensajes: 210
Antigüedad: 22 años, 8 meses
Puntos: 0
Re: ayuda con menus con rollover

Código:
 <html>
<head>
<meta http-equiv="Content-Language" content="es">
<title>Ejemplo de menu con mouseover </title>
<script LANGUAGE="JavaScript">
function MA_onLoad()
{

ii = new Image();

ii.src='1';


}
//-->
</SCRIPT>
</head>
<body onLoad="MA_onLoad()"; background="images/oscuro03.gif">

 <table border="0" cellpadding="3" cellspacing="5" style="border-collapse: collapse" bordercolor="#111111" width="16%" id="AutoNumber1">
  <tr>
    <td width="100%" align="center">
     <a onMouseOver="document.images['mabutton1'].src='images/botones/quien1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/qien1.gif' " target="_parent" href="quienes_somos.htm">
    <img border=0 name="mabutton1" src="images/botones/qien1.gif" width="128" height="25"></a></td>
</tr>
<tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/miembro1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/miembro1.gif' " target="_parent" href="miembros.htm">
    <img border=0 name="mabutton1" src="images/botones/miembro1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
  <tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/especiali1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/especiali1.gif' " target="_parent" href="especialidades.htm">
    <img border=0 name="mabutton1" src="images/botones/especiali1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
  <tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/cliente1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/client1.gif' " target="_parent" href="clientes.htm">
    <img border=0 name="mabutton1" src="images/botones/cliente1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
  <tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/ubica1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/ubica1.gif' " target="_parent" href="ubicación.htm">
    <img border=0 name="mabutton1" src="images/botones/ubica1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
  <tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/consult1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/consult1.gif' " target="_parent" href="consultaonline.html">
    <img border=0 name="mabutton1" src="images/botones/consult1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
  <tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/link1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/link1.gif' " target="_parent" href="links.html">
    <img border=0 name="mabutton1" src="images/botones/link1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
  <tr>
    <td width="100%" align="center">
    <a onMouseOver="document.images['mabutton1'].src='images/botones/webmas1-over.gif' " onMouseOut="document.images['mabutton1'].src='images/botones/webmaster1.gif' " target="_parent" href="webmaster.html">
    <img border=0 name="mabutton1" src="images/botones/webmaster1.gif" width="128" height="25"></a></td>
  </td>
  </tr>
</table>
<p> </p>
</body></html>