$(document).ready(function(){
  $('input').each(function(){
    if ($(this).attr('defvalue')) {
      $(this).focus(function(){
        if ($(this).attr('value') == $(this).attr('defvalue')) {
          $(this).attr('value','');
        }
      })
      .blur(function(){
        if ($(this).attr('value') == '') {
          $(this).attr('value',$(this).attr('defvalue'));
        }
      });
    }
  })
})



