$(document).ready(function() {
 $('input.mc_input[title]').each(function() {
  if($(this).val() === '') {$(this).val($(this).attr('title'));}
  
  $(this).focus(function() {
   $(this).addClass('focus');
  });
  
  $(this).keypress(function() {
   if($(this).val() === $(this).attr('title')) {$(this).val('').addClass('has-text').removeClass('focus');}
  });
  
  $(this).blur(function() {
   if($(this).val() === '') {$(this).val($(this).attr('title')).removeClass('has-text').removeClass('focus');}
   if($(this).val() === $(this).attr('title')) {$(this).removeClass('focus');}
  });
  
 });
});

