// starting the script on page load
$(document).ready(function(){
	$('#uid2').focus(function() { if($(this).val() == 'Name'){ $(this).attr("value",""); } });
	$('#uid2').blur(function() { if($(this).val() == ''){ $(this).attr("value","Name"); } });
	
	$('#uid3').focus(function() { if($(this).val() == 'Firma'){ $(this).attr("value",""); } });
	$('#uid3').blur(function() { if($(this).val() == ''){ $(this).attr("value","Firma"); } });
	
	$('#uid4').focus(function() { if($(this).val() == 'Telefon'){ $(this).attr("value",""); } });
	$('#uid4').blur(function() { if($(this).val() == ''){ $(this).attr("value","Telefon"); } });
	
	$('#uid5').focus(function() { if($(this).val() == 'E-Mail'){ $(this).attr("value",""); } });
	$('#uid5').blur(function() { if($(this).val() == ''){ $(this).attr("value","E-Mail"); } });
	
	$('#uid40').focus(function() { if($(this).val() == 'Ihr Anliegen'){ $(this).attr("value",""); } });
	$('#uid40').blur(function() { if($(this).val() == ''){ $(this).attr("value","Ihr Anliegen"); } });
});
