function hinten() 
 {
 var monat;
 var heute=new Date;
 monat=heute.getMonth();
 if (monat==0)
{
 window.document.bgColor="#669999"; 
}
else if (monat==1)
{ 
window.document.bgColor="#CC0000"; 
}

else if(monat==2)
{ 
window.document.bgColor="#FF9933"; 
}

else if(monat==3)
{ 
window.document.bgColor="#3399CC"; 
}

else if(monat==4)
{ 
window.document.bgColor="#006666"; 
}

else if(monat==5)
{ 
window.document.bgColor="#666699"; 
}
else if(monat==6)
{ 
window.document.bgColor="#993300"; 
}
else if(monat==7)
{ 
window.document.bgColor="#FF3333"; 
}
else if(monat==8)
{ 
window.document.bgColor="#000000"; 
}
else if(monat==9)
{ 
window.document.bgColor="#336666"; 
}
else if(monat==10)
{ 
window.document.bgColor="#330099"; 
}
else if(monat==11)
{ 
window.document.bgColor="#336699"; 
}
}



