// JavaScript Document

$(document).ready(function(){
  	
	$(".NLname").focus(function () {
		if(this.value == 'Name') this.value = '';		
	});
	
	$(".NLemail").focus(function () {
		if(this.value == 'E-Mail') this.value = '';		
	});
	
	$(".NLname").blur(function () {
		if(this.value == '') this.value = 'Name';		
	});
	
	$(".NLemail").blur(function () {
		if(this.value == '') this.value = 'E-Mail';		
	});

});

