
//TAMÑO EN PAGIAN 210*190
//claros, claros-lluvia.jpg cubierto2.jpg cubierto.jpg lluvia.jpg lluvioso.jpg mas_claro.jpg niebla, nubes2, nubes, nubessinsol.jpg nubladosinsol.jpg
//  CLAROS.gif  LLUVIOSO.gif   SOL.gif
var fecha = new Date();
diasemana = fecha.getDay();  
switch (diasemana){
case 0: // Domingo.
var foto="fotos_tiempo/SOL.gif";
var temperatura = 27;
break;
case 1: // Lunes.
var foto="fotos_tiempo/CLAROS.gif";
var temperatura = 25;
break;
case 2: // Martes.
var foto="fotos_tiempo/SOL.gif";
var temperatura =32;
break;
case 3: // Miércoles. 
var foto="fotos_tiempo/SOL.gif";
var temperatura =34;
break;
case 4: // Jueves.
var foto="fotos_tiempo/SOL.gif";
var temperatura = 30;
break;
case 5: // Viernes.
var foto="fotos_tiempo/SOL.gif";
var temperatura = 30;
break;
case 6: // Sábado.
var foto="fotos_tiempo/SOL.gif";
var temperatura = 32;
break;
}
document.write("<img src=' " + foto + " '/>");
document.write("<br><br>Temperatura del dia: " + temperatura + " ºC");
