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('violet engaste'); document.write('violet engaste'); document.write('topaz'); document.write('capri blue'); document.write('rosa'); document.write('light colorado topaz'); document.write('turquesa'); document.write('lima'); document.write('tectan 0.30mm 8,6kg'); document.write (''); document.write (''); document.write('violet engaste'); document.write('violet engaste'); document.write('topaz'); document.write('capri blue'); document.write('rosa'); document.write('light colorado topaz'); document.write('turquesa'); document.write('lima'); document.write('tectan 0.30mm 8,6kg'); 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); }