$(document).ready(function() {

$('#inSearch').click(function() {
	if (this.value == this.defaultValue) {
		this.value = '';
	}
}
);

$('#inSearch').blur(function() {
	if (this.value == '') {
		this.value = this.defaultValue;
	}
}
);
});

