$(function(){
  $(".defaultValue").each(function(){
    var elm = $(this);
    elm.focus(function(){
      if(this.value == this.title)
        this.value = "";
    });
    elm.blur(function(){
      if(this.value == "")
        this.value = this.title;      
    });
    
    if(elm.val() == "")
      elm.val(elm.attr("title"));
  });
  
  $("form").submit(function(){
    
    var elm = $(".defaultValue", this);

    if(elm.val() == elm.attr("title"))
      elm.val("");
  });
});

