Ya vi ya. Estaba probando a ver si hay algun evento que se lance antes de que empiece a cargar la web...
Veo que tienes jquery incluido en la web, xq no tratas de hacerlo con jquery y quitar el onload??
Código Javascript
:
Ver original$(function() {
var ancho = screen.width;
if (parseInt(ancho) < parseInt(1281)) {
document.getElementById("hojaEstilo").href="css/estiloPrincipalMini.css";
document.getElementById("logo").src="iconos/logo1-headerMini.png";
document.getElementById("img1").src="fotos/vacaloura001mini.jpg";
document.getElementById("img2").src="fotos/vacaloura002mini.jpg";
document.getElementById("img3").src="fotos/vacaloura003mini.jpg";
document.getElementById("img4").src="fotos/vacaloura004mini.jpg";
document.getElementById("img5").src="fotos/vacaloura005mini.jpg";
} else {
document.getElementById("hojaEstilo").href="css/estiloPrincipal.css";
document.getElementById("logo").src="iconos/logo1-header.png";
document.getElementById("img1").src="fotos/vacaloura001.jpg";
document.getElementById("img2").src="fotos/vacaloura002.jpg";
document.getElementById("img3").src="fotos/vacaloura003.jpg";
document.getElementById("img4").src="fotos/vacaloura004.jpg";
document.getElementById("img5").src="fotos/vacaloura005.jpg";
}
});