var now = new Date();
var month = now.getMonth() + 1;
var date = now.getDate();
var year = now.getYear();
var logo;

// Valentijnsdag
// 14 februari
if (month == 2 && date >= 10 && date <= 14) logo = '<img src="images/meetouraussies_valentijnsdag.jpg" border="0" width="512" height="90">';

// Koninginnendag
// 29 t/m 30 april
else if (month == 4 && date >= 29 && date <= 30) logo = '<img src="images/meetouraussies_koninginnendag.jpg" border="0" width="512" height="90">';

// Verjaardag Cooper 
// 1 april
else if (month == 4 && date == 1) logo = '<img src="images/meetouraussies_cooper.jpg" border="0" width="512" height="90">';

// Dodenherdenking 
// 4 mei
else if (month == 5 && date == 4) logo = '<img src="images/meetouraussies_dodenherdenking.jpg" border="0" width="512" height="90">';

// Bevrijdingsdag 
// 5 mei
else if (month == 5 && date == 5) logo = '<img src="images/meetouraussies_bevrijdingsdag.jpg" border="0" width="512" height="90">';

// Pasen 
// 8 april en 9 april
else if (month == 4 && date >= 8 && date <= 9) logo = '<img src="images/meetouraussies_pasen.jpg" border="0" width="512" height="90">';

// Verjaardag Sandeau 
// 30 september
else if (month == 9 && date == 30) logo = '<img src="images/meetouraussies_sandeau.jpg" border="0" width="512" height="90">';

// Dierendag 
// 4 oktober
else if (month == 10 && date == 4) logo = '<img src="images/meetouraussies_dierendag.jpg" border="0" width="512" height="90">';

// Halloween 
// 31 oktober
else if (month == 10 && date == 31) logo = '<img src="images/meetouraussies_halloween.jpg" border="0" width="512" height="90">';

// Sinterklaas 
// 5 december
else if (month == 11 && date > 17) logo = '<img src="images/meetouraussies_sinterklaas.jpg" border="0" width="512" height="90">';
else if (month == 12 && date >= 1 && date <= 5) logo = '<img src="images/meetouraussies_sinterklaas.jpg" border="0" width="512" height="90">';

// Kerst 25 en 26 december
else if (month == 12 && date >= 19 && date <=26) logo = '<img src="images/meetouraussies_kerstmis.jpg" border="0" width="512" height="90">';

// Oud en Nieuw 
// 31 december en 1 januari
else if (month == 12 && date >= 27) logo = '<img src="images/meetouraussies_nieuwjaar.jpg" border="0" width="512" height="90">';
else if (month == 1 && date >= 1 && date <= 4) logo = '<img src="images/meetouraussies_nieuwjaar.jpg" border="0" width="512" height="90">';

// Gewoon het logo
else logo = '<img src="images/meetouraussies.jpg" border="0" width="512" height="90">';
document.write(logo);