

$(document).ready(function() {
			$('.cerca').addClass("cerca");
       		$('.cerca').focus(function() {
       			$(this).removeClass("cerca").addClass("cercaOn");
    		    if (this.value == this.defaultValue){ 
    		    	this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
    		$('.cerca').blur(function() {
    			$(this).removeClass("cercaOn").addClass("cerca");
    		    if ($.trim(this.value) != ''){
			    	$(this).removeClass("cerca").addClass("cercaOn");
				}
    		});
		});	