
	// Do not edit the following function calls:

	
	// Call your functions here:
		


// Do not edit the following functions:

function disableSubmit() {
	$('input[@type=submit]').click(function(){ $(this).attr('disabled',true); });
}

// Your functions go here
	
$(document).ready(function() {
	//This function looks for the input field of the id searchterm and clears the field on focus and restores in onblur. 
	$("#fPostCode").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
	}
	}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
	}
	});
	
	
	$("#fHousenumber").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
	}
	}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
	}
	});

});