Prueba con esto: Código PHP:
<html>
<head>
<title>Texto del título</title>
<script>
texto=new Array();
imagen=new Array();
imagen[0]=new Image();
imagen[1]=new Image();
hoy=new Date();
mes=hoy.getMonth();
mes=Math.floor(mes/6);
//-------- TEXTOS ----------------------------------------
texto[0]="Hola a todos esto es el texto número 1... tralararalaa";
texto[1]="Ya queda menos para todo lo que es navidadad.adadad....."
//--------- IMAGENES ---------------------------------------
imagen[0].src="http://www.karlankas.net/transmutado.jpg"
imagen[1].src="http://www.karlankas.net/chufa2.jpg"
//----------------------------------------------------------
function inicio(){
document.getElementById("textos").innerHTML=texto[mes];
document.getElementById("imagenes").src=imagen[mes].src;
}
</script>
</head>
<body onload="inicio()">
<img id="imagenes">
<div id="textos">
</body>
</html>