var $j = jQuery.noConflict();

jQuery(document).ready(function($) {
  
  $('.auto-clear').focus(function() {

    if (! this.default_value) {
      this.default_value = this.value;
    }
    if (this.value == this.default_value) {
      this.value = "";
    }

  }).blur(function() {
    if(this.value == "") {
			this.value = this.default_value;
		}
  });
	
});