  $(document).ready(function() {   
    $("input").each(function(){
       var current_value = $(this).val();
       var value_text = $(this).attr("title");
       if(current_value==""){
        $(this).val(""+value_text+"");
       }
    });
    $("input").live("click", function(){
       var current_value = $(this).val();
       var value_text = $(this).attr("title");
       if(current_value==value_text){
          $(this).val("");
       }
       
    });
    $("textarea").each(function(){
       var current_value = $(this).val();
       var value_text = $(this).attr("title");
       if(current_value==""){
        $(this).val(""+value_text+"");
       }
    });
    $("textarea").live("click", function(){
       var current_value = $(this).val();
       var value_text = $(this).attr("title");
       if(current_value==value_text){
          $(this).val("");
       }
       
    });
  });