$(function(){
	$('#all a.hirkep').lightBox();
	$('a.calendar-event').click(function(){
		alert('Esemény: '+this.title);
	});
	cnt ='';
	$('a.calendar-event').mouseover(function(){
		title = this.title
		cnt = $('#calendar-show').html();
		$('#calendar-show').html(title);
	});
	$('a.calendar-event').mouseout(function(){$('#calendar-show').html(cnt);});
});
