var nr = new Array ();
nr[0] = "1";
nr[1] = "2";
var i = Math.floor(2*Math.random())

var hours = (new Date()).getHours();
var url = 'http://vetteletters.nl/sitedata/2//Image/01_Entree/Bakkerij/';
if ( (hours >= 6) && (hours < 9) )
  document.write('<img src="'+url+'ontbijt'+(nr[i])+'.jpg" alt="ontbijt">');
else if ( (hours >= 9) && (hours < 10) )
  document.write('<img src="'+url+'koek'+(nr[i])+'.jpg" alt="koek">');  
else if ( (hours >= 10) && (hours < 12) )
  document.write('<img src="'+url+'gebak'+(nr[i])+'.jpg" alt="gebak">');   
else if ( (hours >= 12) && (hours < 14) )
  document.write('<img src="'+url+'broodje'+(nr[i])+'.jpg" alt="broodje">');
else if ( (hours >= 14) && (hours < 16) )
  document.write('<img src="'+url+'donut'+(nr[i])+'.jpg" alt="donut">');  
else if ( (hours >= 16) && (hours < 17) )
  document.write('<img src="'+url+'hightea'+(nr[i])+'.jpg" alt="high tea">');  
else if ( (hours >= 17) && (hours < 18) )
  document.write('<img src="'+url+'borrelhapje'+(nr[i])+'.jpg" alt="borrelhapje">');    
else if ( (hours >= 18) && (hours < 21 ) )
  document.write('<img src="'+url+'hamburger'+(nr[i])+'.jpg" alt="hamburger">');
else if ( (hours >= 21) && (hours < 24) )
  document.write('<img src="'+url+'pizza'+(nr[i])+'.jpg" alt="pizza">');    
else
  document.write('<img src="'+url+'doner'+(nr[i])+'.jpg" alt="doner kebap">');
