$(document).ready(function(){
    $.ajax({
        url: 'counter.php?o=2',
        success: function(result){
            $('#stat_day').html(result);
        }
    });
    $.ajax({
        url: 'counter.php?o=1',
        success: function(result){
            $('#stat_all').html(result);
        }
    });
});

function validate_contact_form(form)
{
    var error = false;
    $(form).find('.required').each(function(){
        if($(this).val().length<1)
        {
            $(this).addClass('error');
            error = true;
        }
        else
            $(this).removeClass('error');

    });

    if(error)
    {
        alert('Pola oznaczone gwiazdką są wymagane. \r\nProsze uzupełnić wszystkie wymagane informacje.')
        return false;
    }

    return true;
}
