
$().ready(function(){
$('#nazwa_firmy').focus( function(){
if($(this).val() == "Your Name"){
$(this).val("");
}
}).mouseout( function(){
if($(this).val() == ""){
$(this).val("Your Name");
}
})
})

$().ready(function(){
$('#telefon').focus( function(){
if($(this).val() == "Telephone or E-mail"){
$(this).val("");
}
}).mouseout( function(){
if($(this).val() == ""){
$(this).val("Telephone or E-mail");
}
})
})