window.addEvent('domready',function(){
	$$('table[summary=programma]').each(function(el){
		el.addClass('program');
		table = new HtmlTable(el, {
			zebra: true,
			classZebra: 'odd'
		});
		var html = el.getElement('th').get('html');
		el.getElement('th').set('html','');
		new Element('div', {
			html: html
		}).adopt(
			new Element('img', {
				src:'../image/button.png',
				styles: {
					position:'absolute',
					left:-45,
					top:-9
				}
			})
		).inject(el.getElement('th'));
	});
	$$('#middle ul').each(function(el){
		el.addClass('menu');
		el.getElements('li').each(function(li){
			if(li!=el.getLast('li')){
				new Element('img', {
					src:'../image/curl_small.png',
					styles: {
						position:'absolute',
						left:-25,
						bottom:-25
					}
				}).inject(li);
			}
		});
	});

});
