(function ($) {

  Drupal.behaviors.pascal_morin = {
    attach: function (context, settings) {
      $('.teaser-block').each(function(){
        $(this).click(function(){
          window.location = $(this).find('h2 a').attr('href');
        })  
      })
    }
  };

}(jQuery));;

