var imagenes = 9; var tam = 315; var ancho_ventana = 210; var esperamov = 60; // espera entre movimientos var dir = 1; // cantidad de pixels que desplaza por movimiento var pos = 0; var tot = 0; // total imagenes cargadas function Direccion(cual) { dir=cual; } function escribe(){ document.write ('
'); document.write (''); document.write('DB0721 opque yelow'); document.write('DB0710 yelow'); document.write('jet'); document.write('ss20 fucshia'); document.write('dark orchid'); document.write('jet'); document.write('vitrail ligth'); document.write('nigth helio'); document.write('bermuda blue'); document.write (''); document.write (''); document.write('DB0721 opque yelow'); document.write('DB0710 yelow'); document.write('jet'); document.write('ss20 fucshia'); document.write('dark orchid'); document.write('jet'); document.write('vitrail ligth'); document.write('nigth helio'); document.write('bermuda blue'); document.write (''); document.write ('
'); } function mueve(){ pos = pos > tam*2 ? 0 : pos+dir; document.getElementById('imas0').style.left = pos < tam ? pos : -2*tam+pos; document.getElementById('imas1').style.left = -tam + pos; setTimeout('mueve()',esperamov); } function inicio(){ if( tot == imagenes ) setTimeout('mueve()',esperamov); else setTimeout('inicio()',500); }