var now = new Date(  );
var hour = now.getHours(  );
if(hour>=7 && hour<21)
document.write('<body class="dag">');
else {document.write('<body class="nacht">');}
