// JavaScript Document
function set(){
//Change colour and remove wording in the product search bar	
	$('#propertyValue').each(function() {
		var thisValue = this.value;
		$(this).css('color', '#ccc'); // this could be in the style sheet instead
		$(this).focus(function() {
			if(this.value == thisValue) {
				this.value = '';
				$(this).css('color', '#333');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('color', '#ccc'); // this could be in the style sheet instead
				this.value = thisValue;
			}
		});
	});
//Change colour and remove wording in the product search bar	
	$('#mortgageAmount').each(function() {
		var thisValue = this.value;
		$(this).css('color', '#ccc'); // this could be in the style sheet instead
		$(this).focus(function() {
			if(this.value == thisValue) {
				this.value = '';
				$(this).css('color', '#333');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('color', '#ccc'); // this could be in the style sheet instead
				this.value = thisValue;
			}
		});
	});
}
