$(document).ready(function() {

emptyBlankInit();

  
});

function emptyBlankInit(){
  $('.emptyBlank').each(function() {
    
    var def=$(this).attr('value');
    
    $(this).css('color','#888');
    
    $(this).focus(function() {
      if($(this).attr('value') == def){
        $(this).attr('value','');
        $(this).css('color','#000');
      }
    });
    
    $(this).blur(function() {
      if($(this).attr('value').length ==0){
        $(this).attr('value',def);
        $(this).css('color','#888');
      }
    });
    
  });
}