/* on focus clear */
	$(document).ready(function(){

        $(".sQuickSearch").focus( function() {
            if (this.value == this.defaultValue) {
                this.value = "";
            }
        });
        $(".sQuickSearch").blur( function() {
            if (this.value == "") {
                this.value = this.defaultValue;
            }
        });
    
	});

/* end onfocus clear */	
