
$().ready(function(){
$('#nazwa_firmy').focus( function(){
if($(this).val() == "Vorname und Nachname"){
$(this).val("");
}
}).mouseout( function(){
if($(this).val() == ""){
$(this).val("Vorname und Nachname");
}
})
})

$().ready(function(){
$('#telefon').focus( function(){
if($(this).val() == "Telefonnummer oder E-Mail"){
$(this).val("");
}
}).mouseout( function(){
if($(this).val() == ""){
$(this).val("Telefonnummer oder E-Mail");
}
})
})