/**
* Written by Rob Schmitt, The Web Developer's Blog
* http://webdeveloper.beforeseven.com/
*/

/**
* The following variables may be adjusted
*/

/**
* No need to modify anything below this line
*/

$(document).ready(function() {
 $("input[type=text][title]").each(function() {  
   $(this).val($(this).attr("title"));  
   if($.trim($(this).val()) == "")  
     $(this).val($(this).attr("title"));  
   $(this)  
     .focus(function() {  
       if($(this).val() == $(this).attr("title")) $(this).val("");  
    })  
     .blur(function() {  
       if($.trim($(this).val()) == "") $(this).val($(this).attr("title"));  
     });  
 });
});
