Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/06/2009, 16:37
rufus
 
Fecha de Ingreso: mayo-2009
Ubicación: Andalucia
Mensajes: 650
Antigüedad: 15 años
Puntos: 1
me falla el script y no se donde esta el fallo!!!

aqui dejo el codigo completo:

Código:
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
                <script type="text/javascript">
                   
          function rollover (){
              var roll = new ReExp ("rollover");
              var images = document.getElemenstByTagName("img");
              var preload = [];
              for (var i= 0; i < images.length; i++){
               if (images[i].id.match(roll)){
             preload[i] = new Image();
             preload[i].src = images[i].id + "home_equipo1.jpg";
             images[i].onmouseover = mouseOver;
             images[i].onmouseout = mouseOut;
             }

             }

          }

function mouseOver()
{

this.src = this.id + "home_equipo1.jpg";
}

function mouseOut (){
this.src = this.id + "about_flota1.jpg";
}


                    </script>
    </head>
    <body>

    <p>   <img id="rollover_home" name="hombre_equipo1.jpg"
    src="home_equipo1.jpg" alt="home" >
    </p>

    <p>  <img id="rollover_about" name="about_flota1.jpg"
    src="about_flota1.jpg" alt="about" >
                     </p>
    </body>
</html>