$(document).ready(function () {	
	$('div.KiemeltLista ul li').hover(function () {
        $("a.KiemeltHoverKeret", this).show();
	}, function () {
        $("a.KiemeltHoverKeret", this).hide();
	});
});

