var _arr = ['Vorname','Nachname','Strasse','Nr.','PLZ', 'Ort', 'E-Mail', 'Telefon', 'Ihre Nachricht'];
var _last = "";
$(document).ready(function(){		
	$(':input').click(function(){
		if(in_array($(this).attr("value"),_arr)){
			_last = $(this).attr("value");
			$(this).attr("value","");
		}	
	})
});

function in_array(item,arr) {
	for(p=0;p<arr.length;p++){
		if (item == arr[p]){
			return true;	
		}
	}
	return false;
}
