jQuery(function() {
	jQuery('#footid1').focus(function() {
		vari = this.value;
		if(vari=='Ihr Name') {
				this.value='';
		}		
		}).blur(function() {
			vari = this.value;
			if(vari=='') {
				this.value='Ihr Name';
			}		
	});
	jQuery('#footid2').focus(function() {
		vari = this.value;
		if(vari=='Ihre E-Mail Adresse') {
				this.value='';
		}		
		}).blur(function() {
			vari = this.value;
			if(vari=='') {
				this.value='Ihre E-Mail Adresse';
			}		
	});
	jQuery('#footid3').focus(function() {
		vari = this.value;
		if(vari=='Ihre Nachricht') {
				this.value='';
		}		
		}).blur(function() {
			vari = this.value;
			if(vari=='') {
				this.value='Ihre Nachricht';
			}		
	});
});


