var imagenes = new armarvector ("/img/foto_home1.gif","/img/foto_home2.gif");
// Declaramos todas las imagenes 
var enlaces  = new armarvector ("#","#");
// Declaramos sus respectivos enlaces
function Imagen_Aleatoria() {
hoy= new Date();
maximo=2; //La cantidad de imagenes que poseemos.
segundos=hoy.getSeconds();
if (segundos==0) {segundos=1}
	 while (segundos>maximo) {segundos=segundos-maximo}
	 document.write ('<IMG SRC="'+imagenes[segundos]+'" border=0>');
}
function armarvector (v1,v2) {
 this[1]=v1;
 this[2]=v2;

}