$(document).ready(function(){
	
	$('body').removeClass('no_JS');
		
	$('input[name=q]').focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

});
