function scrolldown(){
    var div = document.getElementById('chat_history');
    h = div.scrollHeight;
    div.scrollTop = h;
}

function start(){
    $.post("chat.php",{tekst:$("#input_form").val()},function(data) {
        $.post("img.php",function(url) {
            show_foto(url);
        });
        $("#chat_history").html(data);
        scrolldown();
        $("#input_form").removeAttr("disabled").val("").focus().focus(function(){
            scrolldown();
        });
    });
}

$(function() {
    try {
        $(document).ready(function() {
            start();
            return false;
        });
        $("form").submit(function() {
            if($("#input_form").val()!="") {
                $("#input_form").attr("disabled","disabled");
                start();
            }
            return false;
        });
    } catch(e){}
});

function show_foto(url) {
    $("#bot_fot").html("");
    var img = new Image();
    $(img).load(function () {
        $(this).hide();
        $('#bot_fot').removeClass('loading').append(this);
        $(this).fadeIn("300");
    }).error(function () {
    }).attr('src', url);
}
