jQuery(document).ready(function($) {
  $('.populate').each(function(){
    $(this).val( $(this).attr('title') ).focus(function(){
      $(this).val('');
    });
    $(this).val( $(this).attr('title') ).blur(function(){
      $(this).val( $(this).attr('title') );
    });
    $('label[@for='+$(this).attr('id')+']').addClass('structural');
  });
});
