$(document).ready(function (){
    $("#top_login input[name='username']").focusin(function() {
        var value = $(this).val();
        if( value == 'login' ) {
            $(this).val('');
        }
    });
    $("#top_login input[name='username']").focusout(function() {
        var value = $(this).val();
        if( value == '' ) {
            $(this).val('login');
        }
    });
    $("#newsletter_subscription input[name='email']").focusin(function() {
        var value = $(this).val();
        if( value == 'Podaj swój adres e-mail' ) {
            $(this).val('');
        }
    });
    $("#newsletter_subscription input[name='email']").focusout(function() {
        var value = $(this).val();
        if( value == '' ) {
            $(this).val('Podaj swój adres e-mail');
        }
    });
    $("#register_domains input[name='names']").focusin(function() {
        var value = $(this).val();
        if( value == 'np. domena.pl' ) {
            $(this).val('');
        }
    });
    $("#register_domains input[name='names']").focusout(function() {
        var value = $(this).val();
        if( value == '' ) {
            $(this).val('np. domena.pl');
        }
    });
});

