$(document).ready(function(){

	$('#newform').hide();
	
	$('#email').click(function(){
		$("#newform").show();
	});
	
	$('#testform').ajaxForm(function(){
		$('#newform').hide();
		$("#thankyou").show();
		$("#email").attr({ value: 'Thank you' });
	});
	
	$(".nlfield").click(function(){
		$(this).attr({ value: '' });
	});

});


