function naptar(ev, honap) {
	
	xmlHttp = xhr();
	
    xmlHttp.onreadystatechange = function() {
		if (xmlHttp.readyState == 4) {
	
			// nyitva maradt buborék eltűntetése
			$('toolTip').style.display = 'none';
			
			// tartalom frissítése
			document.getElementById('naptar').innerHTML = xmlHttp.responseText;

			// Sweettitles frissítése
			sweetTitles.init();
			
		}

    }

    xmlHttp.open('GET', '/ajax/naptar/' + ev + '/' + honap, true);
    xmlHttp.send(null);

	return false;

}