// JavaScript Document
var image = new Array();
image[0] = 'imagenes/tira1.gif';
image[1] = 'imagenes/tira2.gif';
image[2] = 'imagenes/tira3.gif';
image[3] = 'imagenes/tira4.gif';
image[4] = 'imagenes/tira5.gif';
image[5] = 'imagenes/tira6.gif';
image[6] = 'imagenes/tira7.gif';
image[7] = 'imagenes/tira8.gif';
image[8] = 'imagenes/tira9.gif';
image[9] = 'imagenes/tira10.gif';

var index = Math.floor(Math.random() * image.length);
document.write('<style type="text/css"> .tira_x { background-image: url('+ image[index] +'); background-repeat: repeat-x; height: 54px; width: 100%;}</style>');