jQuery(document).ready(function() {
  var default_text = 'Skriv din emailadress här';
  jQuery('.go-do-blocks input').focus(function() {
    var value = jQuery(this).val();
    if(value == default_text) {
      jQuery(this).val('');
    }
  });
  jQuery('.go-do-blocks input').blur(function() {
    var value = jQuery(this).val();
    if(value == '') {
      jQuery(this).val(default_text);
    }
  });
});
