// JavaScript Document


$(document).ready(function(){
				   
	$('#scrollBereich').jScrollPane({showArrows:true});
	
	$("#NLname").focus(function () {
		if(this.value == NLnameDescr) this.value = '';		
	});
	
	$("#NLemail").focus(function () {
		if(this.value == NLemailDescr) this.value = '';		
	});
	
	$("#NLname").blur(function () {
		if(this.value == '') this.value = NLnameDescr;		
	});
	
	$("#NLemail").blur(function () {
		if(this.value == '') this.value = NLemailDescr;		
	});

	
});

