$(document).ready(function() {
    $("div#noclegTelefon").html('&nbsp;');
    $("div#noclegFax").html('&nbsp;');
    var domain = document.domain;
    var server = "localhost";
    if(domain=="localhost")
        server = "http://localhost/eurowypoczynek/";
    else
        server = "http://" + domain + "/";
    var ajaxUrl = server;
    var ajaxUrlClientPokaz = ajaxUrl + 'ajax.php?action=pobierzslowo&grupa=form&slowo=pokaz';
    $.ajax({
        type: "GET",
        datatype: "text",
        url: ajaxUrlClientPokaz,
        success: function(text) {
            $("div#noclegTelefon").html('<b style="cursor: pointer">' + text + '</b>');
            $("div#noclegFax").html('<b style="cursor: pointer">' + text + '</b>');
        }
    });
    $("div#noclegTelefon").click(function() {
        alert($("div#noclegTelefon").attr("title") + '\n\r\n\r' + $("div#noclegTelefonUwaga").html());
        $("div#noclegTelefon").html($("div#noclegTelefon").attr("title"));
    });
    $("div#noclegFax").click(function() {
        $("div#noclegFax").html($("div#noclegFax").attr("title"));
    });
});
