 $(document).ready(function() {

  /* Accessible input values
   ---------------- */
  $("input.propagate").each(function(){
      var $this = $(this);
      var val = $('label[for=' + $this.attr('id') + ']').html();
      if($this.val() == '') $this.val(val);
      $this.focus(function(){
          if($this.val() == val) $this.val('');
      }).blur(function(){
          if($this.val() == '') $this.val(val);
      });
  });

});


// Cufon
Cufon.replace('.as-seen-on h2, .title');
