function kalendervandaag(){
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var months=new Array(13);
months[1]="01";
months[2]="02";
months[3]="03";
months[4]="04";
months[5]="05";
months[6]="06";
months[7]="07";
months[8]="08";
months[9]="09";
months[10]="10";
months[11]="11";
months[12]="12";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write(date + "/" + lmonth + "/" + year);
// End -->
}

function vandaag(){
<!-- hide for non-script browser
//
// DayofWeek Display

function initArray(){
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = initArray.arguments[i]
}
var tsDate = new Date()
var tsWday = tsDate.getDay()
var tsArray = new initArray("open van 19u tot 22u30.<font size='-2' color='#7B7871'><br>Kom gerust langs voor een rustige zondagavond.</font>","gesloten.<font size='-2' color='#7B7871'><br>We zijn terug open vanaf vrijdag.</font>","gesloten.<font size='-2' color='#696762'><br>We zijn terug open vanaf vrijdag.</font>","gesloten.<font size='-2' color='#7B7871'><br>We zijn terug open vanaf vrijdag.</font>","gesloten.<font size='-2' color='#7B7871'><br>Maar morgen bent u zeker welkom.</font>","open van 16u tot 2u.<font size='-2' color='#7B7871'><br>Vanaf 16u begint je weekend in Jeugdhuis Okapi!</font>","open van 20u tot 2u.<font size='-2' color='#7B7871'><br>Tot vanavond!</font>");
var tsDisplay = tsArray[(tsWday+1)]
document.write("Jh Okapi is vandaag " + tsDisplay);

// end hiding -->
}
