function rezervace_vykreslit() {
	var xx = '';
	$('.rezervace_tabulka tbody td').each(function(i) {
		obj = $(this);
		xx = obj.text().toUpperCase();
		if (xx == 'O') {
			obj.addClass('obsazeno');
			obj.text(xx);
			obj.attr('title', 'obsazeno');
		} else if (xx == 'R'){
			obj.addClass('rezervace');
			obj.text(xx);
			obj.attr('title', 'rezervace');
		} else if (xx == 'W'){
			obj.addClass('weekend');
			obj.text(xx);
			obj.attr('title', 'obsazeno pouze o weekendu - volejte');
		} else if (xx.replace(' ','') == ''){
			obj.addClass('volno');
			obj.text('');
			obj.attr('title', 'volno');
		}
	}
	);
	
	$('td.volno').hover(
		function () {$(this).addClass('volno_hover');},
		function () {$(this).removeClass('volno_hover');}
	);
	
	$('.rezervace_tabulka tbody tr').hover(
		function () {$(this).addClass('rezervace_radek_hover');},
		function () {$(this).removeClass('rezervace_radek_hover');}
	);

}
