// SEARCH BOX TEXT
jQuery(document).ready(function () {
	jQuery('#searchform #s')
		.focus(function () {
			if (this.value === this.defaultValue) {
				this.value = '';
			} else {
				this.select();
			}
		})
		.blur(function () {
			if (jQuery.trim(this.value) === '') {
				this.value = (this.defaultValue ? this.defaultValue : '');
			}
		});
});

