$(document).ready(function(){
  //Blur/Focus-Behavior of Formelements
  $(this).find('input[type="text"]:not(.dp-applied):not(.ignore), textarea:not(.ignore)').each(function(){
    if(!$(this).attr("rel"))$(this).attr("rel", $(this).val());
    $(this).focus(function(){
      if($(this).val() == $(this).attr("rel")){
        $(this).val('');
      }
    });
    $(this).blur(function(){
      if($(this).val() == '')$(this).val($(this).attr("rel"));
    });
  });
});
