/*
 * defaultVal
 * http://www.karalamalar.net/
 *
 * Copyright (c) 2009 İzzet Emre Erkan
 * Licensed under Creative Commons Attribution-Share Alike 3.0 Unported License
 * http://creativecommons.org/licenses/by-sa/3.0/
 *
 * Date: 2009-10-06 12:49:44 +0300 (Tue, 06 Oct 2009)
 * Revision: 3
 */
(function($){  
  $.fn.extend({
    defaultVal: function() {
      return this.each(function() {
        var title;
        var $this = $(this);
        title = $this.attr('title');
        if($this.val() == "") $this.val(title);
        $this.attr('title','');
        $this
          .focus(function() {
            var $this = $(this);
            if($this.val() == title)
              $this.val('');
          })
          .blur(function() {
            var $this = $(this);
            if($this.val() == '')
              $this.val(title);
          });
      });  
    }  
  });  
})(jQuery);
