$(document).ready(function () {

  $('.loginField').focus( function (e) {
  
    if ($(this).attr('rel')=='init') {
      $(this).attr('rel','');
      $(this).attr('value','');
    }
  
  });


});
