Código HTML:
Ver original
<html> <head> <script> var cont=0 function cambia() { cont++; switch(cont%5+1) { case 1: document.getElementById("fotocambia").src="1.jpg"; break; case 2: document.getElementById("fotocambia").src="2.jpg"; break; case 3: document.getElementById("fotocambia").src="3.jpg"; break; case 4: document.getElementById("fotocambia").src="4.jpg"; break; case 5: document.getElementById("fotocambia").src="5.jpg"; break; } } function inicio() { setInterval(cambia, 1000); } window.onload=inicio; </script> </head> <body> <table width="100%" border="0"> <tr> </tr> </table> </body> </html>
Pero quiero que en la celda de a lado cada imagen tenga un titulo referente a la imagen.