window.onload = function(){
    applyDefaultValue(document.getElementById('newsletter-field-name'), 'Imię i nazwisko');
    applyDefaultValue(document.getElementById('newsletter-field-mail'), 'Twój e-mail');
    applyDefaultValue(document.getElementById('contact-name'), 'Imię i nazwisko');
    applyDefaultValue(document.getElementById('contact-mail'), 'Twój e-mail');
    applyDefaultValue(document.getElementById('contact-subject'), 'Temat');
    applyDefaultValue(document.getElementById('contact-content'), 'Treść zapytania');
}

function applyDefaultValue(elem, val){
    elem.style.color = '#45474D';
    elem.value = val;
    elem.onfocus = function(){
        if (this.value == val) {
            this.style.color = '#737680';
            this.value = '';
        }
    }
    elem.onblur = function(){
        if (this.value == '') {
            this.style.color = '#45474D';
            this.value = val;
        }
    }
}

