$().ready(function() {
    $('.pasteit').click(function () {
        $('#sub').submit();
    });
    $('.deleteit').click(function () {
        $('#remove').submit();
    });

    $('#refresh').click(function () {
        $('#code').attr('src', '/ads.php?' + Math.random());
        return false;
    });

    $('.checkit').click(function() {
        $.get("/check/"+$('#icode').val(),
            function(data){
                $('#output').html(data);
            }
        );
    });
    $('#icode').keyup(function () {
        if ($('#icode').val().length > 5) {
            $.get("/check/"+$('#icode').val()+"/silent",
                function(data) {
                    if (data == 'true') {
                        $('#icode').css('backgroundColor', '#E0FFE0');
                    }
                    if (data == 'false') {
                        $('#icode').css('backgroundColor', '#FFE0E0');
                    }
                }
            );
        }
    });

});
