// JavaScript Document
function randomBG(){
	var d=new Date();
	var bg=new String();
	if(d.getMonth()==0 || d.getMonth()==4 || d.getMonth()==8){
		bg="bg00.jpg";
	}else if(d.getMonth()==1 || d.getMonth()==5 || d.getMonth()==9){
		bg="bg01.jpg";		
	}else if(d.getMonth()==2 || d.getMonth()==6 || d.getMonth()==10){
		bg="bg02.jpg";		
	}else if(d.getMonth()==3 || d.getMonth()==7 || d.getMonth()==11){
		bg="bg03.jpg";		
	}
	document.getElementById("wrapper").style.backgroundImage="url(squelettes/aess-aou-2007/images/"+bg+")";
}