
$(window).load(function () {
	$('input[type=text], input[type=search]').focus(function () {
		if (this.value == this.defaultValue){
		this.value = '';
		}
	});
		$('input[type=text], input[type=search]').blur(function () {
		if ($.trim(this.value) == ''){
		this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
});
