var date=new Date();
if((date.getFullYear()==year&&date.getMonth()>7)||(date.getFullYear()==year+1&&date.getMonth()<7)){
var month=new Array("jan","feb","mae","apr","mai","jun","jul","aug","sep","okt","nov","dez");
if(window.location.hash=="#heute")window.location.hash=month[date.getMonth()];
if(date.getDay()!=0&&date.getDay()!=6){
var today=document.getElementById("a"+date.getMonth()).childNodes[1].childNodes[Math.ceil((date.getDate()-date.getDay()+5)/7)*2+1].childNodes[date.getDay()*2-1];
//today=document.getElementById("a"+date.getMonth()).childNodes[0].childNodes[Math.ceil((date.getDate()-date.getDay()+5)/7)].childNodes[date.getDay()-1];
today.style.backgroundImage="url(/system/today.png)";
today.style.backgroundPosition="center";
today.style.backgroundRepeat="no-repeat";
today.style.borderColor="red";
today.style.borderStyle="solid";
today.style.borderWidth="2px";
today.firstChild.style.fontWeight="bold";
today.firstChild.style.color="#c00";
today.firstChild.style.textShadow="0.1em 0.1em 0.2em #bbb";}}

