function showPomoc() {
    $('a[rel=pomoc]').bind('mouseover',function() {
        $(this).append('<div id="pomoc"></div>');
        $('#pomoc').load($(this).attr('href'), '', function() {
            $('#pomoc').show();
        });
        return false;
    });
    $('a[rel=pomoc]').bind('mouseout', function() {
        $('#pomoc').hide();
        $(this+' #pomoc').remove();
        return false;
    });
    $('a[rel=pomoc]').bind('click', function() {
        $('#pomoc').toggle();
        return false;
    });
}
showPomoc();